Skip to content

split

split(input: String)
split(input: String, delimiter: String, count: Integer)

ParameterTypeDescription
inputStringString to split up into parts
(optional) delimiterStringWhere to split (default: " ")
(optional) countIntegerThe amount of substrings to produce

Returns

(List) A list of all the different parts as a result of splitting the string.