Konverto MM/YYYY në DD/MM/YYYY
01/2025 → 15/01/2025
Konvertues i Shpejtë
→
15/01/2025
Si të Konvertosh MM/YYYY në DD/MM/YYYY
Konvertimi nga MM/YYYY në DD/MM/YYYY përfshin riorganizimin e komponentëve të datës:
Nga
MM/YYYY
01/2025
në
DD/MM/YYYY
15/01/2025
1
Identifiko Pjesët
Në MM/YYYY: Month-year format commonly used for credit cards, expiration dates, and monthly reports
2
Riorganizo
Riorganizo për të përputhur formatin DD/MM/YYYY: Day-Month-Year format commonly used in Europe, Asia, and most of the world
3
Rregullo Ndarësin
Ndrysho ndarësin nga "/" në "/" nëse nevojitet.
Shembuj Kodi
JavaScript
// Konverto MM/YYYY në DD/MM/YYYY
function convertDate(dateStr) {
// Analizo MM/YYYY
const parts = dateStr.split('/');
const [year, month, day] = parts;
// Formato si DD/MM/YYYY
return `${day}/${month}/${year}`;
}
console.log(convertDate('01/2025')); // 15/01/2025
Python
from datetime import datetime
# Konverto MM/YYYY në DD/MM/YYYY
date_str = '01/2025'
date = datetime.strptime(date_str, '%Y-%m-%d')
result = date.strftime('%d/%m/%Y')
print(result) # 15/01/2025