Allow: one, two, three
Reject: four, five, six
I want to do it in a single filter because I want the four/five/six to only be rejected if found in combination with the one/two/three. I presume this can be achieved using multiple carefully prioritised filters, but I have a lot of filters and don't want to be constantly juggling them.
In NZBGet a line like this would do the job:
( one | two | three ) -four -five -six
It's been a while since I did my filters in that too so I might be misremembering, but you'll hopefully get the idea.
I assume I need to use the regex prefix, but I can't for the life work out what regex to use.
How can I achieve this in sab? I'm pulling my hair out failing to figure it out

