this is probably a very simple question, but is it possible to do something like:
var2 = The var1 = var2 " Word"
and make var1 be "The Word"? the reason I want to do this is to get user input so I can't just set var1 to "The Word"
var2 = "The"; var1 = var2." Word";
Will work
Saludos Gerardo
or even easier:
var2 = "The"; var1 .= " Word";
Even easier to not get the result you want 🙂
Matt Wade codewalkers.com
Only if var2 and var1 are "in the same memory space". Otherwise I hope var1 already had "The" assigned to it a while before your code.