I'm using a couple of regular expression without being well-versed which means I can't figure out why I'm getting this result and I would really appreciate some assistance.
This is my mp3tag-action:
Replace with regular expression
Field: Performer
Regular expression: ([-({ _.+\x{201c}"])(\l)(?# for tags)
Replace matches with: $1$upper($2)
Case-sensitive comparison checked
Replace with regular expression
Field: Performer
Regular expression: (?<!&|:|;|-|/|!|\.|\?|\+)(\s+\b(A|And)\b)
Replace matches with: $lower($1)
Case-sensitive comparison checked
Something in this expression causes the following error in Musicbee: https://i.imgur.com/5MrWsEO.jpg
Any insight would be greatly appreciated!