remove space in between numbers

Advanced Renamer forum
#1 : 17/07-18 17:56
warwick
warwick
Posts: 2
hello all

how do i remove a space in between numbers in a folder name. i already have 12 methods being applied to the folder structure and there are spaces in the folder name I wish to keep, so removing *all spaces is not an option (I've used 'Remove: \<space> and that gets rid of 'em all).

my folders look like this:

C-07 031 - Project 1
C-07 068 - Project 2

...and should look like this:

C-07031 - Project 1
C-07068 - Project 2

...this is driving me crazy, please help!

thanks in advance.


17/07-18 17:56
#2 : 17/07-18 20:08
Domi
Domi
Posts: 27
Reply to #1:
Try replacing with RegEx:

(\d)\s+(\d)

with: \1\2


17/07-18 20:08
#3 : 26/07-18 12:03
warwick
warwick
Posts: 2
Reply to #2:
That worked like a treat!

Thank you so much. You star!


26/07-18 12:03