DD/MM/YYYY ला YYYY-MM मध्ये कन्व्हर्ट करा
15/01/2025 → 2025-01
जलद कन्व्हर्टर
→
2025-01
DD/MM/YYYY ला YYYY-MM मध्ये कसे कन्व्हर्ट करावे
DD/MM/YYYY पासून YYYY-MM मध्ये कन्व्हर्ट करण्यात तारखेचे भाग पुन्हा व्यवस्थित करणे समाविष्ट आहे:
पासून
DD/MM/YYYY
15/01/2025
ला
YYYY-MM
2025-01
1
भाग ओळखा
DD/MM/YYYY मध्ये: Day-Month-Year format commonly used in Europe, Asia, and most of the world
2
पुन्हा व्यवस्थित करा
YYYY-MM फॉरमॅटशी जुळवण्यासाठी पुन्हा व्यवस्थित करा: Year-month format following ISO 8601, ideal for file naming and sorting
3
विभाजक समायोजित करा
आवश्यक असल्यास "/" पासून "-" मध्ये विभाजक बदला.
कोड उदाहरणे
JavaScript
// DD/MM/YYYY ला YYYY-MM मध्ये कन्व्हर्ट करा
function convertDate(dateStr) {
// DD/MM/YYYY पार्स करा
const parts = dateStr.split('/');
const [day, month, year] = parts;
// YYYY-MM म्हणून फॉरमॅट करा
return `${year}-${month}-${day}`;
}
console.log(convertDate('15/01/2025')); // 2025-01
Python
from datetime import datetime
# DD/MM/YYYY ला YYYY-MM मध्ये कन्व्हर्ट करा
date_str = '15/01/2025'
date = datetime.strptime(date_str, '%d/%m/%Y')
result = date.strftime('%Y-%m-%d')
print(result) # 2025-01