vote up 1 vote down star

I can easily concatenate two variables, foo and bar, as follows in Tcl: "${foo}${bar}".

However, if I don't want to put an intermediate result into a variable, how can I easily concatenate the results of calling some proc?

Long hand this would be written:

set foo [myFoo $arg]
set bar [myBar $arg]
set result "${foo}${bar}"

Is there some way to create result without introducing the temporary variables foo and bar?

Doing this is incorrect for my purposes:

concat [myFoo $arg] [myBar $arg]

as it introduces a space between the two results (for list purposes) if one does not exist.

Seems like 'string concat' would be what I want, but it does not appear to be in my version of Tcl interpreter.

string concat [myFoo $arg] [myBar $arg]

String concat is written about here:

flag

3 Answers

vote up 3 vote down check

Do you find this acceptable?

set result "[myFoo $arg][$myBar $arg]"
link|flag
vote up 0 vote down

just write it as a word with no extra spaces:

[myFoo $arg][myBar $arg]

Tcl sees this as a single word after substitution, regardless of the result of the two subcommands.

link|flag
vote up 1 vote down

If you are doing this many times, in a loop, or separated by some intermediate code, you might also consider:

set result ""
append result [myFoo $arg]
append result [myBar $arg]
append result [myBaz $arg]
link|flag

Your Answer

Get an OpenID
or

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