Text Concatenation
- Aktualisiert2025-10-31
- 1 Minute(n) Lesezeit
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
Verwandte Inhalte
- 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.