substring-after
XSLT/XPath Reference: XSLT elements, EXSLT functions, XPath functions, XPath axesThe substring-after function returns a string that is the rest of a given string after a given substring.
Syntax
substring-after(haystack ,needle )
Arguments
- haystack
-  The string to be evaluated. Part of this string will be returned. 
- needle
-  The substring to search for. Everything after the first occurrence of* needle* in*haystack* will be returned.
Returns
A string.
Examples
| XPath Example | Output | 
|---|---|
| substring-after('aa-bb','-') | bb | 
| substring-after('aa-bb','a') | a-bb | 
| substring-after('aa-bb','b') | b | 
| substring-after('aa-bb','q') | (empty string) | 
Defined
Gecko support
Supported.
    © 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
    https://developer.mozilla.org/en-US/docs/Web/XPath/Functions/substring-after