This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 9b7b246dcc NIFI-13736 Updated Expression Language Guide join function
example (#9256)
9b7b246dcc is described below
commit 9b7b246dcc1f57c2d94d9816c3615f89bb7fe8bf
Author: markobean <[email protected]>
AuthorDate: Sat Sep 14 16:07:48 2024 -0400
NIFI-13736 Updated Expression Language Guide join function example (#9256)
Signed-off-by: David Handermann <[email protected]>
---
nifi-docs/src/main/asciidoc/expression-language-guide.adoc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/nifi-docs/src/main/asciidoc/expression-language-guide.adoc
b/nifi-docs/src/main/asciidoc/expression-language-guide.adoc
index e2c30cb6fb..4356e5218a 100644
--- a/nifi-docs/src/main/asciidoc/expression-language-guide.adoc
+++ b/nifi-docs/src/main/asciidoc/expression-language-guide.adoc
@@ -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`
|=======================================================================================