Chuyển đổi DD/MM/YYYY sang YYYY-MM-DD
15/01/2025 → 2025-01-15
Chuyển Đổi Nhanh
→
2025-01-15
Cách Chuyển Đổi DD/MM/YYYY sang YYYY-MM-DD
Chuyển đổi từ DD/MM/YYYY sang YYYY-MM-DD cần sắp xếp lại các thành phần ngày:
Từ
DD/MM/YYYY
15/01/2025
sang
YYYY-MM-DD
2025-01-15
1
Xác Định Các Phần
Trong DD/MM/YYYY: Day-Month-Year format commonly used in Europe, Asia, and most of the world
2
Sắp Xếp Lại
Sắp xếp lại để khớp với định dạng YYYY-MM-DD: ISO 8601 standard format, ideal for sorting and international use
3
Điều Chỉnh Dấu Phân Cách
Thay đổi dấu phân cách từ "/" sang "-" nếu cần.
Ví Dụ Code
JavaScript
// Chuyển đổi DD/MM/YYYY sang YYYY-MM-DD
function convertDate(dateStr) {
// Phân tích DD/MM/YYYY
const parts = dateStr.split('/');
const [day, month, year] = parts;
// Định dạng thành YYYY-MM-DD
return `${year}-${month}-${day}`;
}
console.log(convertDate('15/01/2025')); // 2025-01-15
Python
from datetime import datetime
# Chuyển đổi DD/MM/YYYY sang YYYY-MM-DD
date_str = '15/01/2025'
date = datetime.strptime(date_str, '%d/%m/%Y')
result = date.strftime('%Y-%m-%d')
print(result) # 2025-01-15