Character String
The following character string and wide character string functions are available:
Function | Short description |
---|---|
CONCAT | Concatenate two STRING values |
CONCAT_WSTRING | Concatenate two WSTRING values |
DELETE | Delete a number of characters from a STRING value |
DELETE_WSTRING | Delete a number of characters from a WSTRING value |
FIND | Find characters within a STRING value |
FIND_WSTRING | Find characters within a WSTRING value |
INSERT | Insert characters into another string of type STRING |
INSERT_WSTRING | Insert characters into another string of type WSTRING |
LEFT | Return the leftmost characters of a STRING value |
LEFT_WSTRING | Return the leftmost characters of a WSTRING value |
LEN | Return the length of a STRING or WSTRING value |
MID | Return the middle characters of a STRING value |
MID_WSTRING | Return the middle characters of a WSTRING value |
REPLACE | Replace characters within a STRING value |
REPLACE_WSTRING | Replace characters within a WSTRING value |
RIGHT | Return the rightmost characters in a STRING value |
RIGHT_WSTRING | Return the rightmost characters in a WSTRING value |