Appends a string.
strconcat <strvar> <string>
Appends a copy of <string> to the end of the string variable <strvar>.
filename = 'c:\teraterm\' strconcat filename 'test.txt' ; c:\teraterm\test.txt msg='HOST:' sprintf2 var "%s/ USER NAME:%s" '192.168.1.1' 'test user' strconcat msg var messagebox msg "inputstr" ; HOST:192.168.1.1/ USER NAME:test user