Can't get Boolean '^' to work

Post Reply
bruce73
Posts: 117
Joined: Tue Mar 04, 2003 11:39 pm

Can't get Boolean '^' to work

Post by bruce73 »

I've tried just about every way to get a negation in the "Subject contains" string using "^", but it just won't happen.

My goal is to set a watch/save filter for a certain movie title (the .mpg parts only), but to exclude all PAR2 files

"PartialNameOfMovie*mpg^PAR2" doesn't work. Nor does [PAR]. Nor does extending the string paramters, so that PAR2 in included within, as:

"PartialNameOfMovie*^PAR2*yenc"

What am I doing wrong?
bruce73
Posts: 117
Joined: Tue Mar 04, 2003 11:39 pm

Post by bruce73 »

OK, I've been playing around with this and I think I know what I was doing wrong. Separate functions need to be separated by "AND", or at least that's what it seems:

Subject contains: PartialNameOf Movie*mpg&^PAR2

This produces the correct result; both conditions, written as separate functions, can now be met.

Does this sound correct?
alex
Posts: 4549
Joined: Thu Feb 27, 2003 5:57 pm

Post by alex »

yes, there should be & or | in between.
Post Reply