2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: dfr concatenate
|
|
|
|
layout: command
|
2022-03-04 13:10:09 +01:00
|
|
|
version: 0.59.1
|
2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
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
|
|
|
|
```
|