The substring-after() function
Smartsite 7.4 - ...
The substring-after() XPath 2.0 function returns the part of arg1 that follows the first occurrence of arg2.
XML | Copy Code |
---|---|
string fn:substring-after(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:substring-after(alphabet, 'def')" /> <xf:output value="fn:substring-after('abcdefghi', 'def')" /> </xf:group> </body> </html> |
The result will be:
ghi
ghi
ghi
Namespace
This function is available within the XPath 2.0 namespace (http://www.w3.org/2005/xpath-functions).