View previous topic :: View next topic |
Author |
Message |
echonine
Joined: 03 Feb 2008 Posts: 4
|
Posted: Sun Feb 03, 2008 10:35 pm Post subject: Newbie needs help |
|
|
I've tried many different things but I can't figure out how to accomplish this:
replace 1st '_' character with '_-_' in prefix
Can someone take pity on me and explain how to do that?
Thanks for your help. |
|
Back to top |
|
 |
admin Site Admin
Joined: 09 Mar 2007 Posts: 448 Location: Canada
|
Posted: Mon Feb 04, 2008 4:05 pm Post subject: |
|
|
This requires a regular expression that defines 2 groups.
Enter the following information into row 1 (do not include the single quotes):
Search: '(?E)(.*?)_(.*)'
Replace: '\1_-_\2'
Let me know if you need anything else.
Peter.
Last edited by admin on Mon Feb 04, 2008 5:51 pm; edited 1 time in total |
|
Back to top |
|
 |
echonine
Joined: 03 Feb 2008 Posts: 4
|
Posted: Mon Feb 04, 2008 5:07 pm Post subject: |
|
|
Thank you so much. That worked perfectly!  |
|
Back to top |
|
 |
|