String Functions

Top  Previous  Next

Trading Blox includes several different built-in functions to manipulate strings.

 

Note that to concatenate strings, the plus (+) sign is used as follows:

 

string1 = "Hello"

string2 = "World"

resultString = string1 + string2

 

PRINT resultString                                ' Prints "HelloWorld"