Text Concatenation
- Updated2025-10-31
- 1 minute(s) read
Text Concatenation
Concatenate texts using sprintf or using the + operator. The operator is an easy way to link text together.
Example
program
section globals
text target, source
endsection
target = target + " Hello " + source
endprogram
Related Information
- sprintf Functions
Use the sprintf function to write text to a text variable without formatting. The sprintf function is an alternative to the concatenation operator +.
- Operators
Link text using the + operator.