Split a string based on a given delimiter and return an array with the tokens.
Syntax:
Tokenize( <cStr> , [<cDelim>] ) -> aTokens
Parameters:
<cStr>
String containing the tokens to extract.
<cDelim>
String with the delimiter characters. ";" by default.
Return Value:
Array with the extracted tokens.