|
|
$splitSplits a string to an array |
|||
| Syntax | |||
|
|||
| Description | |||
| Splits the <string> by <separator> and returns an array of substrings. <flags> may be a combination of the characters s w and r. If s is specified , <separator> matching is case sensitive, otherwise is case insensitive. If w is specified , <separator> is treated as a wildcard-type regular expression (with * and ? wildcars). If r is specified , <separator> is treated as a extended-type regular expression (with character classes, special escapes etc..). If both w and r are specified w takes precedence. If none of w and r are specified <separator> is treated as a simple string to be matched. The returned value may be assigned to a dictionary too: it will be used to simulate an array. |
|||
| Examples | |||
|
|||
| See also | |||
| $join() |