Difference between revisions of "StringSplit"
(jrfconvert import) |
|||
Line 1: | Line 1: | ||
− | [[Category: | + | [[Category:String_Functions]] |
| | ||
Revision as of 08:05, 23 March 2011
stringSplit
Returns a string array containing the sub strings in a string that are delimited by elements of a specified string.SyntaxstringSplit(string_expression, separator)Argumentsstring_exp: Is a string expression.separator: Is a string expression.Return typearrayExamplesprint(stringSplit("Hello", "ll"));//{He, , o}