Konwertuj YYYY-MM do DD/MM/YYYY

2025-01 → 15/01/2025

Szybki Konwerter

15/01/2025

Jak Przekonwertować YYYY-MM do DD/MM/YYYY

Konwersja z YYYY-MM do DD/MM/YYYY polega na przestawieniu składników daty:

Z
YYYY-MM
2025-01
do
DD/MM/YYYY
15/01/2025
1

Zidentyfikuj Części

W YYYY-MM: Year-month format following ISO 8601, ideal for file naming and sorting

2

Przestaw

Przestaw, aby dopasować do formatu DD/MM/YYYY: Day-Month-Year format commonly used in Europe, Asia, and most of the world

3

Dostosuj Separator

Zmień separator z "-" na "/" jeśli to konieczne.

Przykłady Kodu

JavaScript
// Konwertuj YYYY-MM do DD/MM/YYYY function convertDate(dateStr) { // Parsuj YYYY-MM const parts = dateStr.split('-'); const [year, month, day] = parts; // Formatuj jako DD/MM/YYYY return `${day}/${month}/${year}`; } console.log(convertDate('2025-01')); // 15/01/2025
Python
from datetime import datetime # Konwertuj YYYY-MM do 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

Inne Konwersje

Otwórz Pełny Konwerter →

Powiązane Strony