Proper Script Syntax

Just going through my albums and adding onto my master script for removing random tags. Haven’t been able to figure out the correct synax for this one with the commas. Anyone have any thought?

$unset(interpreted, remixed, or otherwise modified by)
$delete(interpreted, remixed, or otherwise modified by)

You need to escape the commas by preceing them with a backslash, like:

$unset(interpreted\, remixed\, or otherwise modified by)
$delete(interpreted\, remixed\, or otherwise modified by)

If you have percent signs, dollar signs or brackets in a tag name, these would need to be escaped as well.

1 Like

Thanks Bob, I swear I tried it but maybe I had it wrong, thank you

1 Like