StringSplit
Generated from the engine's own definition: compute-engine's symbol, which we neither extend nor document by hand. No examples yet — the crosswalk is the reason it has a page.
StringSplit(s): split a string on runs of whitespace (the Unicode White_Space code points), dropping empty parts. StringSplit(s, sep): split a string on the separator string `sep` (empty parts are kept). An empty separator splits into user-perceived characters (grapheme clusters), like Characters. A non-string argument leaves the expression unevaluated. StringSplit(s, pattern): split on each match of a regular expression, with the host dialect's own semantics — including splitting at a zero-width match. Captures are not interleaved into the result; use StringMatchAll for those.
StringSplit((string, string?) -> list<string>) & ((string, regexp) -> list<string>)as compute-engine declares it