09-15-2023, 08:25 PM
(This post was last modified: 09-15-2023, 08:25 PM by Tim Curtis.)
(09-15-2023, 05:44 PM)Huebi Wrote: Hi,
is it possible to specify more than one value in the search mask? The (i) says it must be vlike == value, ot != value. I'm afraid its not possible but maybe i'm wrong and doping it not in the correct way. I would like to excvlude two (or even more) genres, so itried != genre1 genre2 or != genre1 != genre2 but the cresult is always empty. So i guess everything after != kis treated as value, and than its understandable thatv the result is empty.
In upcoming final end-of-year release I've added PERL regular expression operators =~ and !~ which allow for multiple search values for example to exclude multiple genres you would enter the following in the Genre field.
Code:
!~ Rock$|Classical$|Jazz$|Pop$|Latin$|Metal$|New Age$