%dw 2.0
import last from dw::core::Strings
output application/json
---
"hello world!" last 6
DataWeave
last
last(text: String, amount: Number): String
Returns characters from the end of string to a specified number of characters, for example, the last two characters of a string.
Introduced in DataWeave version 2.4.0.
Parameters
Name | Description |
---|---|
|
The string to process. |
|
The number of characters to return. Negative
numbers and |
Example
This example returns the last six characters from a string.
Source
Output
"world!"
Json
last(text: Null, amount: Any): Null
Helper function that enables last
to work with a null
value.
Introduced in DataWeave version 2.4.0.