AutoPatrol, Bureaucrats, Administrators
481
edits
(Created page with "__NOTOC__ Split string into array of strings at given separator. '''Since:''' 2.0.3 == Syntax == SplitString(''string'', ''separator''); == Parameters == :{| |- | ''str...") |
m (Text replacement - "^" to "{{deprecated}}") |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | {{deprecated}}__NOTOC__ | ||
Split string into array of strings at given separator. | Split string into array of strings at given separator. | ||
Line 12: | Line 12: | ||
== Parameters == | == Parameters == | ||
:{| | :{| class="wikitable" | ||
|- | |- | ||
| ''string'' || String to split. | | ''string'' || String to split. | ||
Line 27: | Line 27: | ||
== Examples == | == Examples == | ||
SplitString("a;b;c;d", ";") -> %("a", "b", "c", "d") | |||
SplitString("abcd", ";") -> %("abcd") |