Concatenate strings. It takes two or more string operands.
Return the leftmost N characters of a string. It takes two operands, the first operand is a string, the second is the string length, a numeric integer.
Convert to lowercase. It takes one string operand.
Return characters from the middle of the string.
It takes three operands, the first operand is a string,
the second and third are numeric integer values,
start offset and length, respectively.
The offset is 1-based just like in BASIC, with the
offset value 0 being identical to 1.
Negative offsets count from the right end of the string,
i.e. mid(s,-n,n)
is equivalent to
right(s,n)
.
Return the string converted lowecase, except the first letter of the first word, which will be uppercase. This function takes one string operand.
Return the rightmost N characters of a string. It takes two operands, the first operand is a string, the second is the string length, a numeric integer.
Return the number of characters in the string. It takes one string operand.
Convert to uppercase. It takes one string operand.