TeleFlow BasicScript Concat

TeleFlow BasicScript Concat

From TeleFlow

Revision as of 23:38, 19 May 2008 by Wikilib (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

Concatenates two strings.

Syntax:

CONCAT(string,string)
string: a string value or variable.


Examples:

BasicScript code Result
@A = "Hello "
@B = CONCAT(@A,"world")
PRINT "@B" Hello world