You are not logged in.
Pages: 1
Hi, I have filenames as follows (examples):
Aaaaa - Bbbb.pdf
Aaaaa Cccc.pdf
How do I remove the spaces and replace with a -
My filenames have spaces either side of a Hiphen or just spaces, all my files need to be in the following format:
Aaaaa-Bbbb.pdf
Aaaaa-Cccc.pdf
So the filenames are continuous and have no spaces.
Offline
Here are there rules which will do this for you:
1) Replace: Replace all "-" with " " (skip extension)
2) CleanUp: Normalize spaces, Fix spaces (skip extension)
3) Replace: Replace all " " with "-" (skip extension)
The logic is it replace all dashes with spaces first, then remove duplicated spaces, and last step is to replace spaces back with dashes.
P.S. "Normalize spaces" option is available only in the latest development version but is not necessary for this to work.
Offline
Fantastic... great help thanks
Offline
Pages: 1