mirror of
https://github.com/danbulant/nushell
synced 2026-05-19 20:38:40 +00:00
426 B
426 B
| title | layout | version |
|---|---|---|
| split row | command | 0.59.0 |
splits contents over multiple rows via the separator.
Signature
> split row (separator)
Parameters
separator: the character that denotes what separates rows
Examples
Split a string into rows of char
> echo 'abc' | split row ''
Split a string into rows by the specified separator
> echo 'a--b--c' | split row '--'