==
|
Compares strings as equal.
|
!=, <>, ~=
|
Compares strings as unequal.
|
+
|
Concatenates strings.
|
itos(int)
|
Converts integers to strings. Here, int can be a number or an expression. Nonintegers are rounded off.
|
search(string, substring)
|
Searches for substrings. The resulting value is the position of the substring in the string (0 if not found).
|
extract(string, position, length)
|
Extracts pieces of strings.
|
string_starts (string 1, string 2)
|
TRUE, if the value of string 1 starts with the value of string 2.
|
string_ends (string 1, string 2)
|
TRUE, if the value of string 1 ends with the value of string 2.
|
string_match (string 1, string 2)
|
TRUE, if the value of string 1 matches the value of string 2.
|
![]() |
If you use the itos function on a parameter whose value is zero (0), the return value is an empty string.
|