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