Page 1 of 1

Auto spacing known words

PostPosted: Fri Apr 23, 2021 2:45 am
by Jakov
Please is Bulk Rename Utility has the ability to add space between known words in the file name
In my case, I have a list of filenames without spacing between words such as

BulkRenameUtility
EnigmaVirtualBox
MojosoftBusinessCardsMX
AshampooPhotoCard
AimersoftVideoEditor
AshampooMovieStudio
CorelVideoStudioUltimate
DaVinciResolveStudio ..etc

I want to add space automatically between words in order to be
Bulk Rename Utility
Enigma Virtual Box ..etc

Thanks

Re: Auto spacing known words

PostPosted: Fri Apr 23, 2021 4:06 am
by Luuk
The only way for known words, is using something like Special(14) with a checkbox in "Characters"
So if you had a text file of known words, you could then copy/paste them into the window like...
B,u,l,k= ,B,u,l,k
b,u,l,k= ,B,u,l,k
R,e,n,a,m,e= ,R,e,n,a,m,e
r,e,n,a,m,e= ,R,e,n,a,m,e
U,t,i,l,i,t,y= ,U,t,i,l,i,t,y
u,t,i,l,i,t,y= ,U,t,i,l,i,t,y

So that would always capitalize and add a space in front for known words. The v2 regex does this better, but its also much longer.
Another way is the Add(7) with checkmark for "Word Space", but its not for known words, its just for the capital letters, so...
MojosoftBusinessCardsMX.txt ==> Mojosoft Business Cards M X.txt

Re: Auto spacing known words

PostPosted: Fri Apr 23, 2021 12:51 pm
by Jakov
Thanks bro

Re: Auto spacing known words

PostPosted: Fri Apr 23, 2021 4:06 pm
by therube
Won't be perfect, & you're apt to have a space before the file name (which you'd have to nuke).

3:Replace
Code: Select all
Replace:  A|B|C|D|E...
With:   A| B| C| D| E...

Code: Select all
TroubleMaker_NewTest.mp4
-> Trouble Maker_ New Test.mp4

(Above was with T|M|N, not A|B|C...)