Quote:
Originally Posted by unboggling
I need to learn how to switch "FN LN" to "LN, FN" and back. Does anyone have those regex's handy? Could this be added as a function to the search/replace dialogue in regex mode?
|
To go from FN LN, try the search expression "(.*) (.+)" and the replacement expression "\2, \1". To go the other way, try "(.+), (.*)" with the replacement "\2 \1".