Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the recommended way of concatenation of strings?

share|improve this question

3 Answers

up vote 10 down vote accepted

Use append.

set result "The result is "
append result "Earth 2, Mars 0"
share|improve this answer

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).

set combined $a$b

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:

set combined "$a${b}c d"

Finally, if you're adding a string onto the end of a variable, use the append command; it's faster because it uses an intelligent memory management pattern behind the scenes.

append combined $e $f $g
# Which is the same as this:
set combined "$combined$e$f$g"
share|improve this answer
Note that the first argument to append is a variable name, just like the first arg to set. – Donal Fellows May 7 '11 at 6:25

If they are contained in variables, you can simply write "$a$b".

share|improve this answer
I am doing exactly in the way you have written with a small difference like ${a}${b}, but I worry that it is not a correct way to do, is it? – Narek May 6 '11 at 8:30
1  
They are both right - you would use the ${a}${b} construction in the case where you are building a string and there may be an ambiguity about the variable name e.g. set url /admin/item-edit?item_name=${item_id}name – Brian Fenton May 6 '11 at 8:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.