123456789101112131415161718192021222324252627282930 |
- [[join-processor]]
- === Join processor
- ++++
- <titleabbrev>Join</titleabbrev>
- ++++
- Joins each element of an array into a single string using a separator character between each element.
- Throws an error when the field is not an array.
- [[join-options]]
- .Join Options
- [options="header"]
- |======
- | Name | Required | Default | Description
- | `field` | yes | - | Field containing array values to join
- | `separator` | yes | - | The separator character
- | `target_field` | no | `field` | The field to assign the joined value to, by default `field` is updated in-place
- include::common-options.asciidoc[]
- |======
- [source,js]
- --------------------------------------------------
- {
- "join": {
- "field": "joined_array_field",
- "separator": "-"
- }
- }
- --------------------------------------------------
- // NOTCONSOLE
|