I want to change "Use EXIF info" format

Comments & Suggestions, if you want a new feature suggest it here
Post Reply
sworder12
Posts: 1
Joined: 2017-02-16 23:21:10

I want to change "Use EXIF info" format

Post 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
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post 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.
Post Reply