truth wrote:You can do it via regex, but each ocurrence of Space-Space must be matched.
So unless your files all have the same # of Space-Space's, multiple regexes are required:
.*( - ).* matches 1 occurence .*( - ).*( - ).* matches 2 occurences, & so forth.
Theres no 'global-match' feature via regex.
CharTrans is your best bet when you have multiple TextStrings to be translated.
You might prefer #3Replace instead, since this setting can be saved if you need it often.
In CarTrans I can get it to work by adding this: ,-, =_
Using RegEx(1) I enter .*( - ).* for Match and \_ for Replace and it doesn't work. Neither does \s[-]\s for Match and \_ for Replace. The latter works just fine in dn4b.com ReNamer
What am I missing here?
"You might prefer #3Replace instead, since this setting can be saved if you need it often."
Good idea. Should have thought of that before.
