yq/pkg/yqlib/doc/String Operators.md

20 lines
183 B
Markdown
Raw Normal View History

2021-01-14 03:46:50 +00:00
## Join strings
Given a sample.yml file of:
```yaml
- cat
- meow
- 1
- null
- true
```
then
```bash
yq eval 'join("; ")' sample.yml
```
will output
```yaml
cat; meow; 1; ; true
```