Renaming The 5 Character

Advanced Renamer forum
#1 : 04/01-20 04:36
Cosmos
Cosmos
Posts: 1
My folder goes something like this: 1986 Firestone Guard

I want to rename the 5 character which is a space to space-space.

I am using the Renaming Method List.

I have tried everything that I could find on the forums but I can't seem to get it right.

Any help would be appreciated. Thanks.


04/01-20 04:36 - edited 04/01-20 05:17
#2 : 04/01-20 16:27
David Lee
David Lee
Posts: 1125
Use the "Replace" method...

Text to be replaced: Space
Replace with: Space-Space
Occurrence: 1st

If you try the same technique using a "List replace" method then BOTH spaces will be replaced - as I suspect you may have found. You can get round this issue using a regular expression...

Text to be replaced: (^[^ ]* )
Replace with: \1-Space
Use regular expressions: Selected


04/01-20 16:27