Copy link to clipboard
Copied
For example, in this case it's an underscore ( _ )
Original:
Filename_Filenewname
New:
Filenewname
I'd like to use the batch rename function in bridge to complete this task.
thanks
You could use String Substitution and Regular Expression
Find: ^(\w+)(\_)
Replace with: [leave blank]
Test this on a few copy files.
Try using this:
Find: ^\w+( \w+)*_
Replace with: [leave blank]
Copy link to clipboard
Copied
You could use String Substitution and Regular Expression
Find: ^(\w+)(\_)
Replace with: [leave blank]
Test this on a few copy files.
Copy link to clipboard
Copied
Thank you for your support, this works fantastic for single words in my batch of files.
However I have a couple of file names that have spacing and numbers between them.
i.e.
Orginal: 110File name 1_110New File name 1
New: 110New File name 1
Would it be possible to update the expression to cover these too?
Thanks again
Copy link to clipboard
Copied
Try using this:
Find: ^\w+( \w+)*_
Replace with: [leave blank]
Copy link to clipboard
Copied
Works great, thanks again