0.9.2
In order to detect all Artist tags in a list that contain the "-" character, let's create a column with the following function:
$if($strchr($meta(artist),-)=0,No,Yes) so that
- if the first occurrence of "-" within the artist field is 0 (there's no "-"),
- then display No
- else display Yes
However, it works contrarywise, displaying No when actually there's "-" in the string.
The same occurs with the simpler form $if($strchr($meta(artist),-)=0,No).
