Difference between revisions of "StringSplit"
Line 1: | Line 1: | ||
− | + | {{HelpFiles}} | |
− | |||
==== stringSplit ==== | ==== stringSplit ==== | ||
Revision as of 04:40, 14 December 2011
stringSplit
Returns a string array containing the sub strings in a string that are delimited by elements of a specified string.
Syntax
stringSplit(string_expression, separator)
Arguments
string_exp: Is a string expression.separator: Is a string expression.
Return type
array
Examples
print(stringSplit("Hello", "ll"));//{He, , o}