mirror of
https://github.com/nushell/nushell.git
synced 2024-12-11 09:43:24 +01:00
28 lines
425 B
Markdown
28 lines
425 B
Markdown
---
|
|
title: split row
|
|
layout: command
|
|
version: 0.59.1
|
|
---
|
|
|
|
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
|
|
```shell
|
|
> echo 'abc' | split row ''
|
|
```
|
|
|
|
Split a string into rows by the specified separator
|
|
```shell
|
|
> echo 'a--b--c' | split row '--'
|
|
```
|