Difference between revisions of "StringSplit"
Line 1: | Line 1: | ||
− | {{HelpFiles}} | + | {{HelpFiles}} |
+ | |||
==== stringSplit ==== | ==== stringSplit ==== | ||
Line 18: | Line 19: | ||
'''Examples''' | '''Examples''' | ||
− | print(stringSplit("Hello", "ll"));//{He, , o} | + | ''print(stringSplit("Hello", "ll")); //Result: {He,,o} '' |
[[Category:String_Functions]] | [[Category:String_Functions]] |
Revision as of 04:39, 23 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")); //Result: {He,,o}