Convert DD/MM/YYYY to MM/YYYY
15/01/2025 → 01/2025
Quick Converter
→
01/2025
How to Convert DD/MM/YYYY to MM/YYYY
Converting from DD/MM/YYYY to MM/YYYY involves rearranging the date components:
From
DD/MM/YYYY
15/01/2025
To
MM/YYYY
01/2025
1
Identify the Parts
In DD/MM/YYYY: Day-Month-Year format commonly used in Europe, Asia, and most of the world
2
Rearrange
Reorder to match MM/YYYY format: Month-year format commonly used for credit cards, expiration dates, and monthly reports
3
Adjust Separator
Change the separator from "/" to "/" if needed.
Code Examples
JavaScript
// Convert DD/MM/YYYY to MM/YYYY
function convertDate(dateStr) {
// Parse DD/MM/YYYY
const parts = dateStr.split('/');
const [day, month, year] = parts;
// Format as MM/YYYY
return `${year}-${month}-${day}`;
}
console.log(convertDate('15/01/2025')); // 01/2025
Python
from datetime import datetime
# Convert DD/MM/YYYY to MM/YYYY
date_str = '15/01/2025'
date = datetime.strptime(date_str, '%d/%m/%Y')
result = date.strftime('%Y-%m-%d')
print(result) # 01/2025