rename second word in filename

Advanced Renamer forum
#1 : 30/05-22 09:51
Wally
Wally
Posts: 2
Hi,

I have used regular expressions in a far far past but can't seem to work out my issue by myself.
In the process of renaming all my phto and videoclip filenames I want them to have the following format:

20140704_16.25.58.mp4

while they presently are like
20140704 162558.mp4

It must be very simply but to this moment my results are poor.

any help is highly appreciated


30/05-22 09:51
#2 : 31/05-22 09:18
David Lee
David Lee
Posts: 1125
Replace: ([^ ]*) (\d{2})(\d{2})(\d{2})
with: \1_\2.\3.\4
Use regular expressions


31/05-22 09:18