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.
wss + -sharepoint + wss-~: Questions tagged (sharepoint OR wss) AND (wss-2.0 OR wss-3.0)wss + wss-~ + -sharepoint: Questions tagged wss AND wss-3.0wss-~ + -sharepoint + wss: Questions tagged wss-3.0wss-~ + wss + -sharepoint: Questions tagged wss-2.0 OR wss-3.0 OR (wss AND NOT sharepoint)
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.
- 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 thearrayssuffix. Wildcards should not extend their OR logic into other search terms or otherwise interfere with outside terms. - 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.
[status-completed], we will continue the discussion about the incorrect search results here. – Jon Seigel May 15 '10 at 15:59