Split
Splits a string into substrings.
Syntax
split(String, String)
split(String, String, Boolean)
Description
Given two strings and , split string by the expression . The output is a list with the substrings as elements.
Given two strings and and a boolean , if the value of is true
, it is the same as above; if is false
, empty strings ""
are omitted. The output is a list with the substrings as elements.