Rename files - add dot to filename

Advanced Renamer forum
#1 : 05/04-17 13:28
Magnus J
Magnus J
Posts: 1
Hi, I have some files in a folder that I want to rename.
The file names are surname and last name (and file extension .jpg)

Example: GeorgeDavies.jpg

I would like to rename these files from GeorgeDavies.jpg to George.Davies.jpg

How do I accomplish this?

Regards
Magnus


05/04-17 13:28
#2 : 05/04-17 20:45
t
t
Posts: 9
Reply to #1:
Surname and Family Name are the same term

You meant FIRSTNAME,SURNAME


05/04-17 20:45
#3 : 05/04-17 21:18
G. Lambany
G. Lambany
Posts: 187
Reply to #1:
method: Replace
Text to be replaced: (^.+?)([A-Z].+)
Replace with: \1.\2
Case Sensitive: Checked
Use regular expression: Checked

see how that goes..

cheers


05/04-17 21:18