|
String Type
|
Example
|
|---|---|
|
A sequence of digits and letters
|
part-12
|
|
Internal apostrophes
|
company’s
|
|
Abbreviations and acronyms
|
U.S.A., USA
|
|
Company names
|
Smith&Waite
|
|
E-mail addresses
|
|
|
Host names
|
mycompany.com
|
|
Strings with decimal points, such as floating point numbers, serial numbers, model numbers, or IP addresses, in which every
segment must have at least one digit
|
PN244.555.555
|
|
Types of Searches
|
Example
|
Results
|
|---|---|---|
|
AND
|
car AND engine
car engine
|
Returns files that include both car and engine, although not necessarily together.
You do not have to type the word AND between words, because the search uses AND between words by default.
|
|
Exact match
|
“car engine”
|
Returns files that include only an exact match for the phrase "car engine." You must enclose exact word or phrase searches
within quotation marks.
|
|
OR
|
car OR engine
|
Returns files that include either car or engine. The files do not need to include both words to match the search query.
|
|
NOT
|
car NOT engine
|
Returns files that include car, but do not include engine.
|
|
Nested searches
|
((car OR engine) NOT train)
|
Returns files that include car or engine, but do not include train.
|
|
* (a wildcard character that represents zero or more characters)
|
part number 12-*
|
Returns files that include part numbers that begin with 12-, such as part number 12-344, part number 12–78884, or part number
12-1.
The * wildcard cannot be used in the following circumstances:
|
|
? (a wildcard character that represents one character)
|
part number 1?3
|
Returns files with part numbers that begin with 1 and end with 3, such as part number 123, part number 113, or part number
103.
The ? wildcard cannot be used in the following circumstances:
|