View previous topic :: View next topic |
Author |
Message |
RickPhil
Joined: 23 Apr 2011 Posts: 7
|
Posted: Sun May 08, 2011 1:26 pm Post subject: Delete All Before First "-" |
|
|
I'd like to be able to delete everything before the first dash (-) in a file name, e.g. af_123 - Billy Joel - Piano Man would become Billy Joel - Piano Man.
Can anyone help?
Thanks |
|
Back to top |
|
 |
admin Site Admin
Joined: 09 Mar 2007 Posts: 448 Location: Canada
|
Posted: Mon May 09, 2011 2:05 pm Post subject: |
|
|
Insert the following into the custom renaming creator (do not copy the single quotes):
Row: 1
Search: '(?1)^.*?\-[ ]*(.*)'
Replace: '\1'
Then press scan.
It is the '(?1)' that limits the replacements to the first occurrence in the name.
Peter. |
|
Back to top |
|
 |
RickPhil
Joined: 23 Apr 2011 Posts: 7
|
Posted: Tue May 10, 2011 12:32 pm Post subject: |
|
|
Works just as I hoped, thanks. |
|
Back to top |
|
 |
|