A regular expression allows to define alternatives as search criterion.
See the help on regular expressions:
E.g.
$regexp('Album (Style)','(.*)(\(|\[).*',$1) -> Album
$regexp('Album [Style]','(.*)(\(|\[).*',$1) -> Album
Or see here:
A regular expression allows to define alternatives as search criterion.
See the help on regular expressions:
E.g.
$regexp('Album (Style)','(.*)(\(|\[).*',$1) -> Album
$regexp('Album [Style]','(.*)(\(|\[).*',$1) -> Album
Or see here: