Searching Flashcards
dtSearch - AND
Returns documents with both terms
dtSearch - OR
Returns documents with one or the other term
dtSearch - AndAny
First term(s) required, terms after operator are optional
dtSearch - NOT
Returns documents that do not have the term
dtSearch - precedence (order) w/o parentheses
dtSearch evaluates OR expressions before AND expressions
dtSearch - precedence (order) w/ parentheses
Parentheses evaluated first
dtSearch - xfirstword
Marks the beginning of a file
dtSearch - xlastword
Marks the end of a file
dtSearch - fuzzy searching
return documents containing spelling variations of a specified term
dtSearch - %
the character used for fuzzy searches. The number of (%) used indicates how many characters in the search term dtSearch engine ignores when it runs the query. The position of the % indicates the number of characters from the beginning of the term that must match exactly with words in the result set. The following search strings illustrate how this character is used:
app%ly indicates that a matching word must begin with app and differ from apply by only one character.
a%%pply indicates that a matching word must begin with a and differ from apply by only two characters.
dtSearch - #
Phonetic searching. Add character to the front of words
dtSearch - ~
stemming - allowing grammatical variations of a root word
dtSearch - ?
Matches any single character
dtSearch - *
Matches any number of characters
dtSearch - W/N
Within N number of words (N as a number) - aka proximity searching