Split
Splits a
String
object into an array of strings by separating the string into substrings, using a specified separator. Uses default split.Specifies the string which denotes the points at which each split should occur. (Default: comma ,).
Specifies which part of a splitted value should be returned. If not defined all parts will be returned.
Before | After |
"value1,value2,value3" | "value1", "value2", "value3" |
Last modified 4yr ago