Xbasic
*CONCAT Function
Syntax
*CONCAT( Data1 as C, Data2 )
Arguments
- Data1
The character variable that will receive the addition.
- Data2
The character string to add to Data1.
Description
*CONCAT appends Data2to Data1. *CONCAT is much faster than string addition.
Example
dim a as C = "abc" dim b as C = "def" *concat(a,b) ? a = "abcdef"
See Also