The ends-with() function
Smartsite 7.4 - ...
The ends-with() XPath 2.0 function returns true if the string arg1 contains arg2 as a trailing substring, otherwise false.
XML | Copy Code |
---|---|
boolean fn:ends-with(arg1, string arg2) |
Parameters:
- arg1: a node reference or string literal.
- string arg2.
Example
XML | Copy Code |
---|---|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:fn="http://www.w3.org/2005/xpath-functions"> <head> <title>Example</title> <xf:model> <xf:instance> <data xmlns=""> <alphabet>abcdefghi</alphabet> </data> </xf:instance> </xf:model> </head> <body> <xf:group> <xf:output value="fn:ends-with(alphabet, 'ghi')" /> <xf:output value="fn:ends-with('abcd', 'cd')" /> <xf:output value="fn:ends-with(alphabet, 'de')" /> <xf:output value="fn:ends-with('abcd', 'de')" /> </xf:group> </body> </html> |
The result will be:
true
true
false
false
true
false
false
Namespace
This function is available within the XPath 2.0 namespace (http://www.w3.org/2005/xpath-functions).