Description
The functx:substring-after-match function returns the part of $arg that appears after the first match of $regex . If $arg does not match $regex , the entire $arg is returned. If $arg is the empty sequence, the empty sequence is returned.
Arguments and Return TypeName | Type | Description |
$arg |
xs:string? |
the string to substring |
$regex |
xs:string |
the regular expression |
return value |
xs:string? |
XQuery Function DeclarationSee XSLT definition. | declare namespace functx = "http://www.functx.com";
declare function functx:substring-after-match
( $arg as xs:string? ,
$regex as xs:string ) as xs:string? {
replace($arg,concat('^.*?',$regex),'')
} ; |
ExamplesXQuery Example | Results |
---|
functx:substring-after-match(
'abc-def-ghi', '[ce]') |
-def-ghi |
functx:substring-after-match(
'abcd-abcd', 'ab?') |
bcd-abcd |
functx:substring-after-match(
'abcd-abcd', 'x') |
abcd-abcd |
See AlsoHistory |
Recommended Reading:
|