|
Search trick (Boolean operator) |
What it does |
Example |
| AND |
Finds multiple words or phrases. |
java AND basic
Will find both of those words anywhere in the job description. This
operator is not case-sensitive. |
| OR |
Finds either one word or the other. |
java OR basic
Finds either word separately, but could find both words in some
instances. This operator is not case-sensitive. |
| AND NOT |
Finds the first word on a page that does not include the second
word. |
java AND NOT basic
Will only return a job description with the word "java" but without
the word "basic". This operator is not case-sensitive. |
Wildcards
* |
Finds words that start with or end with your search string. |
tele*
Will find "telecom", "telecommute", "telecommunications", and
"telephone". Do NOT use the asterisk to specify the first character
of a string. |
| ( ) |
Groups words or phrases. Other search terms can appear inside
parentheses. |
(java AND basic) AND NOT engineer
Will find a page with the words "java" and "basic", but not
"engineer". Do NOT use ( ) around single words. |