home contribute faq download

FunctX XQuery Functions

functx:max-string

The maximum of a sequence of values, treating them like strings

Google
Webxqueryfunctions.com

Description

The functx:max-string function returns the maximum of the values in $strings. It differs from the built-in fn:max function only in treats values of all types like strings. The built-in fn:max function, by contrast, treats untyped and numeric values like numbers (and an error is raised if they are not numbers).

Arguments and Return Type

NameTypeDescription
$strings xs:anyAtomicType* the sequence of values
return value xs:string?

XQuery Function Declaration

See XSLT definition.
declare namespace functx = "http://www.functx.com";
declare function functx:max-string
  ( $strings as xs:anyAtomicType* )  as xs:string? {

   max(for $string in $strings return string($string))
 } ;

Examples

let $in-xml :=
<in-xml>
  <x>a</x>
  <y>c</y>
  <z>b</z>
</in-xml>
return
XQuery ExampleResultsExplanation
functx:max-string( $in-xml/* )
c
Calling the fn:max function instead would have raised an error.
functx:max-string( (100,25,3) )
3

See Also

fn:maxThe maximum of a sequence of values
functx:max-determine-typeThe maximum value in a sequence, figuring out its type (numeric or string)
functx:min-stringThe minimum of a sequence of values, treating them like strings

History

Published OnLast UpdatedContributor(s)
2006-06-272007-02-26Priscilla Walmsley, Datypic, pwalmsley@datypic.com, http://www.datypic.com
Datypic XQuery Services

Recommended Reading:

XQuery