#1 : 02/07-24 23:17 Armaan
Posts: 1
|
how to remove only "numbers" when renaming a batch of files?
|
#2 : 03/07-24 02:07 Delta Foxtrot
Posts: 339
|
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 |