Text Concatenation
- Mise à jour2025-10-31
- Temps de lecture : 1 minute(s)
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
Contenu associé
- 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.