NIFI-9532 Correct error in allDelineatedValues table in EL Guide

Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com>

This closes #5628.
This commit is contained in:
Andrew Lim 2022-01-04 14:30:28 -05:00 committed by Pierre Villard
parent be138ab656
commit f80e2ec70b
No known key found for this signature in database
GPG Key ID: F92A93B30C07C6D5
1 changed files with 1 additions and 1 deletions

View File

@ -2679,7 +2679,7 @@ provides several functions for evaluating the same conditions against groups of
|===============================================================================
| Expression | Value
| `${allDelineatedValues("${word_list}", ","):contains("o")}` | `true`
| `${allDelineatedValues("${number_list}", ","):count()}` | `4`
| `${allDelineatedValues("${number_list}", ","):count()}` | `5`
| `${allDelineatedValues("${number_list}", ","):matches("[0-9]+")}` | `true`
| `${allDelineatedValues("${word_list}", ","):matches('e')}` | `false`
|===============================================================================