Conformance Examples 0.1.0 — Transforms: transform-split¶
split-comma¶
Splitting on a comma yields a list rendered as a JSON-ish array of quoted strings.
Template
Context
Output
split-delimiter-absent¶
If the delimiter is not in the input, the result is a single-element list.
Template
Context
Output
split-empty-delimiter¶
Empty delimiter produces a list of single-character primitives.
Template
Context
Output
split-empty-input¶
Empty input split by any non-empty delimiter produces a list with one empty-string element.
Template
Context
Output
split-empty-input-empty-delim¶
Empty input split by empty delimiter produces an empty list.
Template
Context
Output
split-piped-into-contains¶
Result list composes with contains: the array branch handles list inputs.
Template
Context
Output
split-piped-into-each¶
Result list composes with each-block iteration.
Template
Context
Output
split-empty-delimiter-astral¶
Empty-delimiter split explodes by code point, so a surrogate pair stays one element rather than splitting into two.
Template
Context
Output
Source fixture: transforms/transform-split.json