strconcat

Appends a string.

Format

strconcat <strvar> <string>

Remarks

Appends a copy of <string> to the end of the string variable <strvar>.

Example

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