Combining 2 strings?

Hi! I am making a simple server set up, and I need to be able to combine 2 strings in the following way:
string 1 = “open” string 2 = IP-address inserted in text box in the UI

Could I do something like having a third string called “String1” “String 2”, that I would insert to the command box? Thankyou!

Hello,
did you try “append” ?

Maybe you could use the ‘format text’ command.

In the format part put your two variables

{string1}{string2}
Then connect the corresponding inputs, and the output will be the formatted string, and some sort of set command to set up a new string.

Go with Fen’s approach.

Drop a “Append” - node and put the strings in there, the output is the combined string.

thanks all, cheers!