Page 1 of 1

I want to change "Use EXIF info" format

Posted: 2017-02-16 23:27:47
by sworder12
hi,all
I want to rename my photos,but use "Use EXIF info" this command will be "2017-02-07 13-11-29",I need change the photos name like" 2017-02-07 13.11.29 "
thanks

Posted: 2017-02-17 08:43:17
by antp
Hi,
You'll have to replace the characters afterwards.
For that you can use the Regex action.
Use the following expression:

Code: Select all

(.+)\s(\d{2})\-(\d{2})\-(\d{2})(.+)
and the following new name:

Code: Select all

$1 $2.$3.$4$5
It will search for a name built like this:
- any characters
- a space
- two numbers
- a dash
- two numbers
- a dash
- two numbers
- any characters
and the new name re-uses the characters and numbers found, but using dots between them.