The value Smith is a string because “=” follows the field name; if the field name was followed by “:”, Smith would be treated as a term. See Equality Clauses described later.In a string, the characters ? and * are treated as wildcards as they are in terms. If a string needs a ? or * that must be used literally, they must be escaped. Escaping can also be used for non-printable or other characters. Doradus uses the backslash for escaping, and there are two escape formats:
• \x: Where x can be one of these characters: t (tab character), b (backspace), n (newline or LF), r (carriage return), f (form feed), ' (single quote), " (double quote), or \ (backslash).
• \uNNNN: This escape sequence can be used for any Unicode character. NNNN must consist of four hex characters 0-F.