You are not logged in.
Pages: 1
Hi Regex Gurus! I need some help for renaming folders
I need switch from:
"HOLIDAY PHOTOS 01 12 2014" (Title D-M-Y)
"AT THE ZOO 03 11 2014" (Title D-M-Y)
TO:
"12 01 HOLIDAY PHOTOS" (M-D Title)
"11 03 AT THE ZOO" (M-D Title)
Thanks
Offline
Use the following RegEx rule:
Replace expression "\A(.*)\s(\d{2})\s(\d{2})\s(\d{4})\Z" with "$3 $2 $1" (skip extension)
Offline
Pages: 1