renaming HEIC files with certain format

Advanced Renamer forum
#1 : 06/05-22 15:14
Remco IJpelaar
Remco IJpelaar
Posts: 2
Hi all,

I'm trying to rename HEIC files using the the relative tag <ExifTool:DateTimeOriginal>
But I want to file name to be presented as 2005-03-12 18.46 (46)
instead of 2005_03_12 18_46_56
Is there a sulution for this?


06/05-22 15:14
#2 : 07/05-22 00:18
David Lee
David Lee
Posts: 1125
Replace: (\d{2})_(\d{2})_(\d{2})$
with: \1.(\2)
Use regular expressions


07/05-22 00:18
#3 : 15/05-22 12:59
Remco IJpelaar
Remco IJpelaar
Posts: 2
Reply to #2:
I'm not sure what you mean. I can't adjust the DateTimeOriginal -tag.
Can you write the full tag that I have to use?


15/05-22 12:59
#4 : 15/05-22 14:08
David Lee
David Lee
Posts: 1125
Reply to #3:
Use the Replace method as above to rename "2005_03_12 18_46_56" as "2005-03-12 18.46 (46)"


15/05-22 14:08