Moving & Changing Date Format in a file name

A swapping-ground for Regular Expression syntax

Moving & Changing Date Format in a file name

Postby QuesoGirl17 » Tue Jan 30, 2024 3:40 pm

I'm somewhat of a newbie when it comes to all of this so I hope someone can help me!!

I would like to change this format :
Sample Basic Name YYYY-MM-DD

To this desired outcome format :
MM-DD-YY Sample Basic Name
QuesoGirl17
 
Posts: 3
Joined: Tue Jul 19, 2022 8:23 pm

Moving & Changing Date Format

Postby Luuk » Wed Jan 31, 2024 12:11 am

The "Match" and "Replace" can be something like...
(.+) (?:19|20)(\d\d)-(\d\d-\d\d)$
\3-\2 \1

SomeName YYYY-MM-DD ---> MM-DD-YY SomeName
Luuk
 
Posts: 705
Joined: Fri Feb 21, 2020 10:58 pm


Return to Regular Expressions