Log in / create account
Navigation
Main Page
Community portal
Current events
Recent changes
Random page
Help
TeleFlow BasicScript Concat
Article
Discussion
View source
History
TeleFlow BasicScript Concat
From TeleFlow
Revision as of 23:43, 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.
Related Steps
BasicScript
Examples
BasicScript code
Result
@A = "Hello "
@B = CONCAT(@A,"world")
PRINT "@B"
Hello world