More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
| | ||
==== stringSplit ==== | ==== stringSplit ==== | ||
Returns a string array containing the sub strings in a string that are delimited by elements of a specified string. | Returns a string array containing the sub strings in a string that are delimited by elements of a specified string. | ||
'''Syntax''' | '''Syntax''' | ||
''' | stringSplit(''string_expression'', ''separator'') | ||
'''Return type''' | '''Arguments''' | ||
array | |||
''string_exp'': Is a string expression.''separator'': Is a string expression. | |||
'''Return type''' | |||
array | |||
'''Examples''' | |||
print(stringSplit("Hello", "ll"));//{He, , o} | print(stringSplit("Hello", "ll"));//{He, , o} | ||
[[Category:String_Functions]] | [[Category:String_Functions]] |
Revision as of 03: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}