แปลง DD/MM/YYYY เป็น MM/YYYY

15/01/2025 → 01/2025

ตัวแปลงด่วน

01/2025

วิธีแปลง DD/MM/YYYY เป็น MM/YYYY

การแปลงจาก DD/MM/YYYY เป็น MM/YYYY ต้องจัดเรียงส่วนประกอบวันที่ใหม่:

จาก
DD/MM/YYYY
15/01/2025
เป็น
MM/YYYY
01/2025
1

ระบุส่วนประกอบ

ในรูปแบบ DD/MM/YYYY: Day-Month-Year format commonly used in Europe, Asia, and most of the world

2

จัดเรียงใหม่

จัดลำดับใหม่ให้ตรงกับรูปแบบ MM/YYYY: Month-year format commonly used for credit cards, expiration dates, and monthly reports

3

ปรับตัวคั่น

เปลี่ยนตัวคั่นจาก "/" เป็น "/" หากจำเป็น

ตัวอย่างโค้ด

JavaScript
// แปลง DD/MM/YYYY เป็น MM/YYYY function convertDate(dateStr) { // แปลง DD/MM/YYYY const parts = dateStr.split('/'); const [day, month, year] = parts; // จัดรูปแบบเป็น MM/YYYY return `${year}-${month}-${day}`; } console.log(convertDate('15/01/2025')); // 01/2025
Python
from datetime import datetime # แปลง DD/MM/YYYY เป็น 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

การแปลงอื่นๆ

เปิดตัวแปลงเต็ม →

หน้าที่เกี่ยวข้อง