< Day Day Up > |
6.2. Gmail Search SyntaxGmail offers a rich search syntax for routing through your email message archive—as if you'd expect, or indeed stand for, any less.
6.2.1. Phrase SearchesEnclose phrases in double-quotes (") to have Gmail search treat them as a unit to be matched exactly (case isn't taken into account). The following query finds only accounting department reports: Subject:"accounting department report" 6.2.2. Basic BooleanThe only Boolean operator supported by Gmail search is OR (uppercase is required). In the absence of the OR operator, AND is implicit. The Boolean OR operator works in Gmail searches just as it does in Google Web searches: specify that any one word or phrase is acceptable by putting an OR between each, such as this query, which finds all messages from the boss or with their subjects marked as urgent: from:boss@example.com OR subject:urgent 6.2.3. NegationThe negation operator (-) also works as it does in Google Web Search, excluding messages matching the negated keyword or operator:keyword pair. So, the following query turns up all messages to my Example Co. not sent from the company's special offers department: to:@examplecom -from:offers@ 6.2.4. GroupingParentheses are used a little strangely in Gmail queries. When enclosing a set of words, they specify that all of those words must be found to be considered a match. So, the following matches messages sent to both Sam and Mira: to:(sam mira) Throwing in an OR allows optional matches while being explicit about groups of options—while we humans tend to be able to parse precedence without need of parentheses, search engines need a little more help. The following query finds all messages sent to Sam about rockets or helicopters: to:sam subject:(rockets OR helicopters) 6.2.5. Mixing SyntaxGmail's various search operators tend to play well together. While the tendency is to start out with minimal search criteria and keep whittling down, with a large number of email messages, crafting your searches can start to take a lot of work. Take a chance and provide as much information as you know about the message you're after and back off bit by bit if you don't find it. The following query, for instance, is one that I just couldn't pull off in my computer's email client: from:Duncan before:2004/10/01 subject:today "World Cup" lunch |
< Day Day Up > |