For example I have :
1
2
2
text1='Unreal' text2='Software'
And I want get third variable by combining text1 and text2:
1
text3='UnrealSoftware'
I know I can do it this way when I want use it to show message:
1
parse('say '..text1..''..txt2..'')
But I want do it by other method.