
The answer lies in effective search methods. One of the most popular methods is the use of Boolean logic in the search criteria. Below is a list of some of the most common Boolean operators.
AND | The use of AND allows the searcher to find documents containing all of the specified words or phrases. For example, entering Java AND Asp.net finds documents containing both words. |
“ ” | The use of quotation marks yields documents that contain an exact phrase. For example, “Java Developer” finds documents that contain that exact phrase. |
OR | Using OR will generate documents containing at least one of the specified words or phrases. For example, entering Java OR PHP finds documents containing either word, but not necessarily both words. |
* Wildcard |
The asterisk is a wildcard. Using the wildcard will allow the searcher to find documents with keywords containing the same root. For example, Manag* returns pages containing the words Manager, Managed, Managing. |
AND NOT | Using AND NOT will exclude any documents containing the specified word or phrase. For example, J2ee AND NOT PHP finds documents which contain J2ee but not those which have PHP as well. |
NEAR | The use of NEAR will retrieve documents containing either specified words or phrases within 10 words of each other. For example, Manager NEAR Personnel. |
( ) | Use parentheses to group Boolean phrases. For example, (Java AND Specialist) AND (java OR j2ee) |
~ | The tilda (~) is used to find synonyms or related words. For example, site:www.aol.com~resume will not only find resumes on the AOL site, but will also pull any document similar to a resume such as curriculum vitas. |
inurl:text | The use of inurl finds pages with a specific word or phrase in the URL. For example, using inurl:resume to find all pages that have the word resume in the address of the webpage. |
intitle:text | The use of intitle is similar to the above. Intitle finds pages that contain the specified word or phrase in the page title. For example, the search intitle:accounting would find pages with accounting in the title. |
site:site name | This operator will find pages within a specific website. The search site:www.shopping.com would find pages at the Shopping.com domain. |
Most of the conventional job boards and resume databases will accept Boolean logic, however some of the niche sites may not. Google and MSN Live also accept the logic as search criteria.
No comments:
Post a Comment