%dw 2.0
output application/json
---
[ "Mariano" endsWith "no", "Mariano" endsWith "to" ]DataWeave
endsWith
endsWith(text: String, suffix: String): Boolean
Returns true if a string ends with a provided substring, false if not.
Parameters
| Name | Description |
|---|---|
|
The input string (a |
|
The suffix string to find at the end of the input string. |
Example
This example finds "no" (but not "to") at the end of "Mariano".
Source
Output
[ true, false ]JSON
endsWith(text: Null, suffix: Any): false
Helper function that enables endsWith to work with a null value.
Introduced in DataWeave version 2.4.0.



