I don't understand why my simple rule fails and inserts duplicate the ampersand text in a single replacement rule that should append album artist to the beginning of artist and add a separator
(.*) search in Album artist
$1 & replace in Artist (appended via +> flag set)
So the album artist is appended once (as expected), but the separator ampersand is appended twice (not expected)
What am I doing wrong? Thanks!