For quite a while I'm trying to remove the tracknumber if it is 00 or contains a Slash "/".
For removing if it is "00" I got this Action:
Format Tag Field Track to $if($eql(%TRACK%,'00'),,%TRACK%)
but how can i remove it if it is "00" or contains a slash (/)?
it has to be something like: $if($or($eql(%TRACK%,'00'),$stricmp(%TRACK%,'/')),,%TRACK%) but this doesnt work...
You are missing the logic operator for $stricmp() - I would use $STRSTR() and then add a number comparator like $gt($strstr(%track%,'/'),0) $if($or($eql(%TRACK%,'00'),$gt($strstr(%track%,'/'),0)),,%TRACK%)