java.lang.Object
dev.metaschema.core.metapath.function.library.FnEndsWith
Implements the XPath 3.1 fn:ends-with
function.
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleanfnEndsWith(String arg1, String arg2) Determine if the string provided in the first argument ends with the string in the second argument.
-
Method Details
-
fnEndsWith
Determine if the string provided in the first argument ends with the string in the second argument.Based on the XPath 3.1 fn:ends-with function.
- Parameters:
arg1- the string to examinearg2- the string to check as the leading substring- Returns:
trueifarg1ends witharg2, orfalseotherwise
-