mirror of https://github.com/apache/nifi.git
NIFI-12535: This closes #8181. Fixed documentation for 'PadRight Examples' table name in the Expression Language Guide as well as the last example in the table.
Signed-off-by: Joseph Witt <joewitt@apache.org>
This commit is contained in:
parent
c41b273e82
commit
77093671e0
|
@ -1078,13 +1078,13 @@ Expressions will provide the following results:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.PadLeft Examples
|
.PadRight Examples
|
||||||
|=======================================================================================
|
|=======================================================================================
|
||||||
| Expression | Value
|
| Expression | Value
|
||||||
| `${greetings:padRight(10)}` | `hello\_____`
|
| `${greetings:padRight(10)}` | `hello\_____`
|
||||||
| `${greetings:padRight(10, '@')}` | `hello@@@@@`
|
| `${greetings:padRight(10, '@')}` | `hello@@@@@`
|
||||||
| `${greetings:padRight(10, 'xy')}` | `helloxyxyx`
|
| `${greetings:padRight(10, 'xy')}` | `helloxyxyx`
|
||||||
| `${greetings:padLeft(10, 'aVeryLongPaddingString')}` | `helloaVery`
|
| `${greetings:padRight(10, 'aVeryLongPaddingString')}` | `helloaVery`
|
||||||
|=======================================================================================
|
|=======================================================================================
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue