Konversi YYYY-MM ke DD/MM/YYYY
2025-01 → 15/01/2025
Konverter Cepat
→
15/01/2025
Cara Mengkonversi YYYY-MM ke DD/MM/YYYY
Mengkonversi dari YYYY-MM ke DD/MM/YYYY melibatkan penyusunan ulang komponen tanggal:
Dari
YYYY-MM
2025-01
ke
DD/MM/YYYY
15/01/2025
1
Identifikasi Bagian-bagian
Dalam YYYY-MM: Year-month format following ISO 8601, ideal for file naming and sorting
2
Susun Ulang
Susun ulang untuk mencocokkan format DD/MM/YYYY: Day-Month-Year format commonly used in Europe, Asia, and most of the world
3
Sesuaikan Pemisah
Ubah pemisah dari "-" ke "/" jika diperlukan.
Contoh Kode
JavaScript
// Konversi YYYY-MM ke DD/MM/YYYY
function convertDate(dateStr) {
// Parse YYYY-MM
const parts = dateStr.split('-');
const [year, month, day] = parts;
// Format sebagai DD/MM/YYYY
return `${day}/${month}/${year}`;
}
console.log(convertDate('2025-01')); // 15/01/2025
Python
from datetime import datetime
# Konversi YYYY-MM ke 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