Konverto YYYY-MM në DD/MM/YYYY
2025-01 → 15/01/2025
Konvertues i Shpejtë
→
15/01/2025
Si të Konvertosh YYYY-MM në DD/MM/YYYY
Konvertimi nga YYYY-MM në DD/MM/YYYY përfshin riorganizimin e komponentëve të datës:
Nga
YYYY-MM
2025-01
në
DD/MM/YYYY
15/01/2025
1
Identifiko Pjesët
Në YYYY-MM: Year-month format following ISO 8601, ideal for file naming and sorting
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 YYYY-MM në DD/MM/YYYY
function convertDate(dateStr) {
// Analizo YYYY-MM
const parts = dateStr.split('-');
const [year, month, day] = parts;
// Formato si DD/MM/YYYY
return `${day}/${month}/${year}`;
}
console.log(convertDate('2025-01')); // 15/01/2025
Python
from datetime import datetime
# Konverto YYYY-MM në DD/MM/YYYY
date_str = '2025-01'
date = datetime.strptime(date_str, '%Y-%m-%d')
result = date.strftime('%d/%m/%Y')
print(result) # 15/01/2025