I have multiple genre entries each separated by \\
I wish to for example change \\rock\\ with \\pop - rock\\
I have tried creating a replace action, replacing 'rock' with 'pop - rock' BUT this also changes other genre tags containing the word 'rock' such as \\hard rock\\
I'm sure I'm missing something obvious, any help appreciated
it's not so obvious.
\\rock\\ to \\pop - rock\\ does not work because \\ is not interpretated as a character as far as iunderstand this.
It works with replace with regular expressions, there you can indicate the start and the end of a field.
Field: GENRE
Regular Expression: ^rock$
Replace Matches With: pop rock