@wtasnorg/node-lib / splitString
splitString(
s,sep):string[]
Defined in: src/strings.ts:771
Split slices s into all substrings separated by sep and returns a slice of the substrings between those separators. If sep is empty, Split splits after each UTF-8 sequence. If both s and sep are empty, Split returns an empty slice.
string
Input string.
string
Separator string.
string[]
Array of substrings.