Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ArgumentTypeDescription
stringStringString to be split
separatorRegular ExpressionExpressionsRegular expression representing the breakpoints in string where the splits should occur

To return an empty string, specify an empty or null-valued argument.

If the split function cannot split the string, for example because there is no separator, it returns a string rather than a single element array.

Note

The separator is expressed as a regular expression. This means that you can use any pattern that can be expressed as a regular expression as a separator. But it also means that you must escape any special characters of regular expressions if you are using these as plain text (e.g. you must use "\\|" to use | as a separator). See examples below.


Examples

split("",",") 

...


and
split(_NULL,",")

returns

both return  [

...

]

split("one,two,three",",")

returns

returns  ["one","two","three"]

split("one::two::three","::")

returns

returns  ["one","two","three"]


split("one::two::","::")

returns

returns  ["one","two",""]


split("::::","::")

returns

returns  ["","",""]


split("field1|field2|field3","\\|")

returns

returns  ["field1","field2","field3"]

This split("abc,123"), ",") 

returns the array ["abc","123"]

split("abc", ",")

returns the string "abc" rather than the single element array ["abc"].


The following expression will split the string at any single digit between 0 and 9:

split("some text1more text3final text","[0-9]")

and returns

...

["some

...

text","more

...

text","final

...

text"]

See Also