> "interesting";
shows all occurrences of interesting
> "interest(s|(ed|ing)(ly)?)?";
interest, interests, interested, interesting, interestedly, interestingly
\
)
"?" fails; "\?"
?; "." . , ! ? a b c ...; "\$\."
$.
“critical” characters are: . ? * + | ( ) [ ] { } ^ $
\"
, \'
, \`
and
\^
, followed by an appropriate ASCII letter, are used to represent characters with
diacritics when they cannot be entered directly
"B\"ar"
Bär; "d\'ej\`a"
déjà
NB: this feature is deprecated; it works only for the Latin-1 encoding and cannot be deactivated
\"s
ß;
\,c
ç;\,C
Ç;
\~n
ñ;\~N
Ñ;
version 3.0.3 introduces two-digit hex escapes for inserting arbitrary byte values:
\xDF
ß in a Latin1-encoded corpus;
\xC3\x9F
ß in a UTF-8-encoded corpus
DICKENS> "interesting" %c;
GERMAN-LAW> "wahrung" %cd;
"'em"
vs. '12"-screen'
'\'em'
and "12\"-screen"
”'em'
and "12""-screen"