The advanced search mechanisms work fine for normal searches, but there is a lot of unusual behavior that occurs when performing a tag search with both the wildcard and the NOT operators. It is more baffling when you add a normal tag into the mix as well. For example, consider the following feasible search, and what its logical equivalent should be (the only tags for [wss-~] are [wss-2.0] and [wss-3.0]):

  • [wss] + [wss-~] + -[sharepoint] : Questions tagged wss AND (wss-2.0 OR wss3.0) AND NOT sharepoint

Now, it has been established that the NOT operator cannot be at the front of the search for good reasons, so only 4 of the 6 possible combinations of arranging these operands are legal for the search. The following is a list of what the logical filter that is returned for each of those combinations.

While some of these filters are useful, none of them are the desired search. It's unknown how the middle two search results decided on wss-3.0 specifically - a similar test using [~arrays] + -[strings] + [c#] did not isolate it to a single value. There is some "order of operations" in the tag search which is not explained, neither in its functionality nor in its reason for being. This odd behavior is a bug, and some suggestions to make logical sense in tag searches are as follows.

  1. Evaluate the NOT and wildcard operations only in the context of the tag they are adhered to. This would be expected behavior: if I state [~arrays], the OR logic of the wildcard should only apply to the tags with the arrays suffix. Wildcards should not extend their OR logic into other search terms or otherwise interfere with outside terms.
  2. Allow ( and ), or some similar enclosure characters, to group search expressions together. Currently, it is not possible to search for (tag1 OR tag2) AND (tag3 OR tag4) unless one or both of the parenthetical expressions are wildcards.

Note that successful implementation of the latter will implicitly perform the former: NOT and wildcards isolated evaluation can be simulated by the logic of enclosing it within parentheses invisibly.

share|improve this question
Since the other question was marked as [status-completed], we will continue the discussion about the incorrect search results here. – Jon Seigel May 15 '10 at 15:59

1 Answer

Everything you post should work, as long as you're not beginning your query with the NOT - operator. That's explicitly not allowed.

The referenced question had to do with unwanted reordering of tags in a query post (which I fixed). So I guess it's related, but with this many tags in flight, you'll have to play with it and see what the results are.

I think I see what you mean -- I had forgotten that explode ~ adds an OR between all the tags it explodes. Since all the other clauses are implicit ANDs, I can see where this would lead to weirdness.

Suggestion: don't use explode for these kinds of ultra-complex queries, control it by using OR directly and explicitly in your searches, as stated here:

http://blog.stackoverflow.com/2008/10/tags-and-tags-or-tags/

share|improve this answer
1  
Jeff, please try the queries in the question here. There's something weird about how the operators expand the query. Wouldn't it be simpler to just allow (, ), and, and or in the search string so people could write their own logic? The processing that goes on right now doesn't make any sense, TBH. – Jon Seigel May 15 '10 at 16:08
2  
@jon I think I understand now; I'm in favor of adding () around exploded OR clauses so they don't leak. – Jeff Atwood May 17 '10 at 12:17
Yes, that would be ideal and (hopefully) an easy fix. Thanks! – Jon Seigel May 17 '10 at 13:00

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged