ends-with()
The function ends-with
returns true
if the first argument string ends with the second argument string, and otherwise returns false
.
Examples
ends-with("foo", "oo")
returnstrue
ends-with($request/url, ".json")
could be used to identify JSON resources
Last updated