strConcat (Function) |
Top Previous Next |
strConcat concatenates ("adds" together) two strings and returns a string with the result in it. Also see the '+' operator for an alternative way of concatenating strings.
Note that the returned string is a dynamic string.
Input: str1 : STRING Left string.
str2 : STRING Right string.
Returns: STRING The resulting string from concatenating str1 and str2.
Declaration: FUNCTION strConcat : STRING;
Example: INCLUDE rtcu.inc |