View previous topic :: View next topic |
Author |
Message |
MarcDan
Joined: 09 Jan 2010 Posts: 2 Location: Montreal
|
Posted: Sat Jan 09, 2010 8:52 pm Post subject: Adding text BEFORE extension |
|
|
I am trying to append the text _Daniel at the end of current filename (s) but BEFORE the extension (i.e. Filename_Daniel.jpg)
Currenttly PFrank appends it AFTER the extension (i.e. Filename.jpg_Daniel
Thanks in advance for your help. |
|
Back to top |
|
 |
admin Site Admin
Joined: 09 Mar 2007 Posts: 448 Location: Canada
|
Posted: Mon Jan 11, 2010 7:03 am Post subject: |
|
|
Not sure what commands you are using in the renaming creator.
The way I would do it is with the following regular expression (copy into the renaming creator but without the single quotes):
Row: 1
Search: '(?E)(.*)'
Replace: '\1_Daniel'
Hope that helps.
Peter. |
|
Back to top |
|
 |
MarcDan
Joined: 09 Jan 2010 Posts: 2 Location: Montreal
|
Posted: Mon Jan 11, 2010 5:40 pm Post subject: Thanks a lot Peter... Indeed it worked! |
|
|
admin wrote: | Not sure what commands you are using in the renaming creator.
The way I would do it is with the following regular expression (copy into the renaming creator but without the single quotes):
Row: 1
Search: '(?E)(.*)'
Replace: '\1_Daniel'
Hope that helps.
Peter. |
|
|
Back to top |
|
 |
|