Quote:
Originally Posted by theducks
It does NOT handle the edge case of 1 right, 1 wrong (Multiple Authors). Those need TLC 
|
Just for fun I looked at using bulk S&R to solve this problem: multiple authors with only some of them incorrect. Under the assumption that any name containing a comma is LN, FN and wants to become FN LN, then using SR template mode with the template
Code:
program:
list_re_group(field('authors'), '&', '.', '(.*)', '{$:swap_around_comma()}')
does the job. It processes each author in the list individually.