mirror of
https://github.com/nushell/nushell.git
synced 2024-12-02 05:13:56 +01:00
24 lines
362 B
Markdown
24 lines
362 B
Markdown
---
|
|
title: dfr concatenate
|
|
layout: command
|
|
version: 0.59.1
|
|
---
|
|
|
|
Concatenates strings with other array
|
|
|
|
## Signature
|
|
|
|
```> dfr concatenate (other)```
|
|
|
|
## Parameters
|
|
|
|
- `other`: Other array with string to be concatenated
|
|
|
|
## Examples
|
|
|
|
Concatenate string
|
|
```shell
|
|
> let other = ([za xs cd] | dfr to-df);
|
|
[abc abc abc] | dfr to-df | dfr concatenate $other
|
|
```
|