how to remove only "numbers" when renaming a batch of files?
how to remove only "numbers" when renaming a batch of files?
Reply to #1:
Hi Armaan,
More information might be needed. If you want to remove specific numbers we'll need examples. But if you simply wish to remove ALL digits from the filename, use \d+ as a regular expression. For instance:
REPLACE method:
Text to replace:\d+
Replace with: [nothing]
All occurrences
NOT case sensitive
Regular expression: YES
Let me know if you have other needs.
Best,
DF
Hi Armaan,
More information might be needed. If you want to remove specific numbers we'll need examples. But if you simply wish to remove ALL digits from the filename, use \d+ as a regular expression. For instance:
REPLACE method:
Text to replace:\d+
Replace with: [nothing]
All occurrences
NOT case sensitive
Regular expression: YES
Let me know if you have other needs.
Best,
DF