Removing Periods in File name

Advanced Renamer forum
#1 : 11/04-13 00:33
Jeffrey
Jeffrey
Posts: 2
I am trying to replace periods in file names with spaces:


Call.The.Midwife.S02E01.avi
Call.The.Midwife.S02E02.avi
Call.The.Midwife.S02E03.avi

to:

Call The Midwife S02E01.avi
Call The Midwife S02E02.avi
Call The Midwife S02E03.avi

How can I do this replace when "." is a wildcard?

Thanks,
Jeff


11/04-13 00:33
#2 : 11/04-13 07:54
Stefan
Stefan
Posts: 274
Reply to #1:

Hi, why is "." a wildcard? Thats only true for regex.
(And since we operate only on the name part, the name/ext delimiter is no issue here too)

Just use

Replace
From: .
To: ~
Occ: All
[_] Case
[_] RE
Apply to: Name

(instead of ~ enter a blank)



.


11/04-13 07:54