Split
The Split() function returns an array of strings from a single input, by separating the input string using a specified delimiter.
Syntax
Split (String, Delimiter)
String | Any text value |
Delimiter | The delimiter text to use to split the input string into an array of strings |
Examples
Function | Output |
Split(“ab##cd##ef##gh”,”##”) | [“ab”,”cd”,”ef”,”gh”] |
Split(“abc*123*zzz”,”*”) | [“abc”,”123″,”zzz”] |