|
|
-
String Expressions
-
STRING:
-
STRING_FUNCTION | STRING_IDENTIFIER | STRING_LITERAL
-
STRING_FUNCTION:
-
chr (INT) | concat (STRING,STRING[,STRING]...)
| str (FLOAT,INT,INT) | strlwr (STRING)
| strupr (STRING) | substr (STRING,INT,INT)
| vstr (INT,VECTOR,STRING,INT,INT)
-
STRING_LITERAL:
-
QUOTE [CHARACTER...] QUOTE
-
Limited to 256 characters.
-
QUOTE:
-
"
-
CHARACTER:
-
Any ASCII or Unicode character, depending on the charset setting in global_settings.
The following escape sequences might be useful when writing to files or message streams:
-
\a - alarm \b - backspace \f
- form feed \n - new line \r - carriage return
\t - horizontal tab \u NNNN -
unicode character four-digit code \v - vertical tab \\
- backslash \' - single quote \" - double
quote
Quick Reference Contents
|
|