Adding blank characters

Advanced Renamer forum
#1 : 01/09-18 12:17
Styb
Styb
Posts: 80
How to rename FreddyMercuryConcert.mp4 to Freddy Mercury Concert.mp4?


01/09-18 12:17
#2 : 08/09-18 12:41
Spiro Conomos
Spiro Conomos
Posts: 15
Reply to #1:

Try:

Add method --> Script

function(index, item) {
return item.name.replace(/([a-z])([A-Z])/g, "$1 $2");
}

- You only type in the middle line
- It searches for lowercase letter then uppercase letter. Without the first lowercase match it also replaces the beginning uppercase letter of the filename.


08/09-18 12:41