TeleFlow BasicScript Concat

TeleFlow BasicScript Concat

From TeleFlow

Jump to: navigation, search

Concatenates two strings.

Syntax

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


Related Steps

Image:Iv_517.gif BasicScript

Examples

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