Special characters adjacent to query terms
When a special character is adjacent to a word in a query, documents that contain the special character and word in the same order are returned.
For example, searching for "30$" finds documents that contain "30$", but does not find documents that contain "$30". However, searching for "30 $" (with a space) finds all documents that contain "30" and "$" anywhere in the documents including both "30$" and "$30".
When a special character is adjacent to a stop word in a query, the stop word is not removed from the query. For example, searching for "at&t" does not remove the stop word "at". However, searching for "at & t" with spaces removes the stop word "at".
When a special character separates two words, the sequence of tokens is searched as a sequence. For example, searching for "jack_jones" finds documents that contain "jack_jones" but not documents that contain "jack_and_jones".
Words that are adjacent to special characters are lemmatized. For example, searching for "cats&dogs" in English finds documents that contain "cat&dog".
You can use special characters in wildcard search expressions.
For example, searching for "ja*_" finds documents that contain "jack_jones".
However, you cannot use wildcard characters to find special characters.
For example, searching for ca*s
finds documents that
contain cats
, categories
, cast-members
, or cas
, but not documents
that contain ca_s
.