Issue regarding to Interchange Names

Advanced Renamer forum
#1 : 11/05-14 20:12
Angel
Angel
Posts: 1
Hello,

I`m new user of advanced renamer. I have many books with name structure:

Family name, Given name - Title

I need that result be:

Given name Family name - Title

I`m using method to interchange defining:

separator = ,
incidence = 1ª
Apply to = name

Result is Given Name - Title Family name,.

I`d appreciate if somebody can tell if is possible to make this change and how to do it.

Regards


11/05-14 20:12
#2 : 11/05-14 21:40
Stefan
Stefan
Posts: 274

FROM:
Family name, Given name - Title
TO:
Given name Family name - Title


Rule:
split the name into four parts, by storing three matches into backreferences groups (...):
(Family name), (Given name)( - Title)

USE:
http://www.advancedrenamer.com/user_guide/metho d_replace
FIND: (.+),#(.+)(#-#.+)
REPLACE: \2#\1\3
[X] RegEx
Apply to: [Name]


Note: instead of my #-sign, insert a space in real.


11/05-14 21:40