What is the recommended way of concatenation of strings?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use append.
|
||||
|
|
|
Tcl does concatenation of strings as a fundamental operation; there's not really even syntax for it because you just write the strings next to each other (or the variable substitutions that produce them).
If you're doing concatenation of a variable's contents with a literal string, it can be helpful to put braces around the variable name or the whole thing in double quotes. Or both:
Finally, if you're adding a string onto the end of a variable, use the
|
|||
|
|
If they are contained in variables, you can simply write |
|||||||
|