I cannot appreciate enough how well written mp3tag is, so thank you to the devs!
I would like to edit the album title so that only the text within two double quotes is retained while discarding anything that is before and after the the double quotes. Example below:
Current tag for Album field:Nexus sky (From "Distant Star Always") asteroid Expected result for Album field:Distant Star Always
I am guessing I need to use Replace with regular expression? Any advise would be great. Thanks!
IMHO this expression is more difficult to read and understand because of the grouping after the first " character.
Instead of grouping any character it is using none of" until reaching the last " character.
The description none of" can also be translated as Match a single character not ^ present in the list. (The list []contains ")
The + matches the previous token between one and unlimited times,
And BTW:
Please be careful - with both expressions - if your current content in ALBUM contains 3 or more " characters.
I've dug into this a bit.
If you always want the content of the first double quote pair, you can achieve that by making the first two asterisks non-greedy like this: