Page 1 of 1

Help changing the date format

PostPosted: Mon Aug 15, 2016 2:08 am
by dox
Hi

im a bit stuck although i feel like i might be missing something obviously so forgive me if im been a dumbass.

i currently have 20,000 photos with this filename syntax after various cleanup and renaming from date taken from EXIF im left with

2004-01-20 12-44-51.jpg

but i need to rename it so it matches the following

2004-01-20 12.44.51.jpg

essentially i want to have the HH.MM.SS using a . seperator instead of a -

unless im missing something, using replace, you cant tell it from what position to start from?

thanks

Re: Help changing the date format

PostPosted: Mon Aug 15, 2016 12:37 pm
by therube
1:RegEx

Code: Select all
Match:  (.+\s)(\d\d)-(\d\d)-(\d\d)
Replace:  \1\2.\3.\4

Re: Help changing the date format

PostPosted: Mon Aug 15, 2016 9:46 pm
by dox
ok, thanks for that!