move text parts
My problem is the following: I want to move text parts, with "swap" I can't get it done.
Source: Series Name 01 - Author Name - Title Name
Result: Series Name 01 - Title Name - Author Name
The number of words between the separators " - " is different
Source: Series Name 01 - Author Name - Title Name
Result: Series Name 01 - Title Name - Author Name
The number of words between the separators " - " is different
Use a Replace method...
Replace: ( -.*)( -.*)
with: \2\1
Use regular expressions
Replace: ( -.*)( -.*)
with: \2\1
Use regular expressions
Reply to #2:
Thanks a lot, simply perfect
Thanks a lot, simply perfect