stringtclconcatenation

TCL string concat


What is the recommended way of concatenation of strings?


Solution

  • Use append.

    set result "The result is "
    append result "Earth 2, Mars 0"