Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions nifi-docs/src/main/asciidoc/expression-language-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2865,14 +2865,14 @@ provides several functions for evaluating the same conditions against groups of

*Return Type*: [.returnType]#String#

*Examples*: Given that the "abc" attribute contains the value "hello world", "xyz" contains "good bye world",
and "filename" contains "file.txt" consider the following examples:
*Examples*: Given that the "abc" attribute contains the value "hello world", "xyz" contains "goodbye world",
consider the following examples:

.join Examples
|=======================================================================================
| Expression | Value
| `${allMatchingAttributes("[ax].*"):substringBefore(" "):join("-")}` | `hello-good`
| `${allAttributes("abc", "xyz"):join(" now")}` | `hello world nowgood bye world now`
| `${allMatchingAttributes("[ax].*"):substringBefore(" "):join("-")}` | `hello-goodbye`
| `${allAttributes("abc", "xyz"):join(" now ")}` | `hello world now goodbye world`
|=======================================================================================


Expand Down