by GMA » Mon May 04, 2009 11:04 pm
Hi, Paul:
Your case is a little harder than it looks:
- If none of your files have underscores before the "@" (or they do but you don't mind them being replaced), you can simply use Repl. (3) to replace all underscores with spaces. But, since you specifically mentioned AFTER the "@", I suppose that's not the case.
- Unless all the files have exactly the same number of underscores after the "@", you can't use one single RegEx to rename them all in one step. So, the only solution I can think of would be the following:
1) Use this in RegEx (1):
MATCH: (.*?@)(.*?)_(.*)
REPLACE: \1\2 \3
2) Select all the files (by pressing CTRL+A or via the "Actions > Select All" menu).
3) Press Rename.
And then repeat steps 2 and 3 until you no longer have any files left to rename. And I DO MEAN repeating step 2; the files may look like they're still selected after you press Rename, but you actually need to select them again to refresh the list.
Cheers,
Gabriel.