|
Below are some tips to better help you in your search! |
| Terms |
|
A query is broken up into terms and operators. There are two types of terms: Single Terms and Phrases. A Single Term is a single word such as "amateur" or "threesome". A Phrase is a group of words surrounded by double quotes such as "big jugs". Multiple terms can be combined together by placing an operator between your terms and phrases. For example the following query will return all pages that contain both "Tera Patrick" as well as "Threesome". "Tera Patrick" AND "Threesome" |
| Operators |
|
You may use the following operators in your query: AND, OR, and NOT (Note: Operators must be ALL CAPS). The OR operator is the default operator. This means that if there is no operator between two terms, the OR operator is used. The OR operator links two terms and finds a matching document if either of the terms exist in a document. To search for documents that contain either "huge cans" or just "tits" use the query: "huge cans" titsor "huge cans" OR tits The AND operator matches documents where both terms exist anywhere in the text of a single document. To search for documents that contain "busty milf" and "threesome" use the query: "busty milf" AND "threesome" The NOT operator excludes documents that contain the term after NOT. To search for documents that contain "threesome" but not "2 guys" use the query: "threesome" NOT "2 guys" Note: The NOT operator cannot be used with just one term. For example, the following search will return no results: NOT "2 guys" |
| Wildcard Searches |
|
You may perform single and multiple character wildcard searches within single terms (not within phrase queries). To perform a single character wildcard search use the "?" symbol. To perform a multiple character wildcard search use the "*" symbol. The single character wildcard search looks for terms that match that with the single character replaced. For example, to search for "text" or "test" you can use the search: te?t Multiple character wildcard searches looks for 0 or more characters. For example, to search for test, tests or tester, you can use the search: test* You can also use the wildcard searches in the middle of a term. te*t Note: You cannot use a * or ? symbol as the first character of a search. |