poliqarp-query-syntax
poliqarp-query-syntax — semi-formal Poliqarp query syntax description
|
within
part
|
meta
part
|
|
|
|
|
String literals are enclosed in matching single quotes ('
) or double quotes
("
). The backslash (\
) character is used to escape characters that
otherwise have a special meaning, or the quote character. The recognized escape sequences are:
\\
backslash (\
)
\'
single quote ('
)
\"
double quote ("
)
\n
line feed (LF, U+000A
)
\r
carriage return (CR, U+000D
)
\t
character tabulation (U+0009
)
\v
line tabulation (U+000B
)
\b
backspace (U+0008
)
\f
form feed (FF, U+000C
)
\xhh
Unicode character with hex value hh
\uhhhh
Unicode character with hex value hhhh
\Uhhhhhhhh
Unicode character with hex value hhhhhhhh