StudioX - adding content of 2 variables to eachother

Hello

lets say I have two variables

1 var = TR/21
2 var = /63c

how do I add 1 + 2 so that

3 var = TR/21/63c?

I understand I use set variable value but what is the code stating var + var 2?

@anon40731888
1 var.ToString+2 var.ToString

or

  1. var1 with the value “TR/21”
  2. var2 with the value “/63c”
    var3=var1 & var2

Hi @anon40731888

Try this

Hi @anon40731888

Right it was that simple :smiley: Thanks

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.