Query Basics (top)
Regular Expressions
(top)
If you are familiar with the definition of a regular
expression then you may use such expressions as search
terms provided you enclose them in the angular brackets:
< >
For example, to search for documents which contain sequences of numbers of length at most 20 you would enter
Escaping Characters (top)
Some characters in a query which is a Boolean
expression or regular expression have special meaning. To
"turn off" this meaning of the character simply escape it
using the backslash '\'. For example, to search for the
previous sample query in this document you would enter:
|
\<\[\:digit\:\]\{1\,20\}\>
|
i.e. you need to escape the characters: < [ : ]
> { , }
Note: A "phrase" search (see below) allows you to do
the same search without the need to escape each such
special character.
|