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
I want to change "Use EXIF info" format
Hi,
You'll have to replace the characters afterwards.
For that you can use the Regex action.
Use the following expression:
and the following new name:
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.
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})(.+)
Code: Select all
$1 $2.$3.$4$5
- 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.