How to rename files with spaces between each character?

Advanced Renamer forum
#1 : 24/06-20 02:06
Em
Em
Posts: 2
Is there a way to insert spaces between each letter and number.

For example:

INTRODUCTION => I N T R O D U C T I O N

CHAPTER1 => C H A P T E R 1


24/06-20 02:06
#2 : 24/06-20 09:11
David Lee
David Lee
Posts: 1125
You can use a regular expression with a "negative lookahead" to replace every character that isn't at the end of the filename with itself plus a space.

Replace method...
Text to be replaced: "(.(?!$))"
Replace with: "\1 "
Occurence: All
Use regular expressions


24/06-20 09:11
#3 : 24/06-20 11:44
Em
Em
Posts: 2
Reply to #2: Works perfectly. Thank you.


24/06-20 11:44