home contribute faq download

FunctX XQuery Functions

functx:substring-before-match

The substring before the last text that matches a regex

Google
Webxqueryfunctions.com

Description

The functx:substring-before-match function returns the part of $arg that appears before the first match of $regex. If $arg does not match $regex, the entire $arg is returned. If $arg is the empty sequence, a zero-length string is returned.

Arguments and Return Type

NameTypeDescription
$arg xs:string? the string to substring
$regex xs:string the regular expression
return value xs:string?

XQuery Function Declaration

See XSLT definition.
declare namespace functx = "http://www.functx.com";
declare function functx:substring-before-match
  ( $arg as xs:string? ,
    $regex as xs:string )  as xs:string {

   tokenize($arg,$regex)[1]
 } ;

Examples

XQuery ExampleResults
functx:substring-before-match(
     'abc-def-ghi', '[dg]')
abc-
functx:substring-before-match(
     'abcd-abcd', 'bc?')
a
functx:substring-before-match(
     'abcd-abcd', 'x')
abcd-abcd

See Also

fn:substring-beforeThe substring before the first occurrence of a delimiter
functx:substring-after-last-matchThe substring after the last text that matches a regex

History

Published OnLast UpdatedContributor(s)
2007-08-112007-08-11Priscilla Walmsley, Datypic, pwalmsley@datypic.com, http://www.datypic.com
Datypic XQuery Services

Recommended Reading:

XQuery