home contribute faq download

FunctX XSLT Functions

functx:min-string

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

Google
Webxsltfunctions.com

Description

The functx:min-string function returns the minimum of the values in $strings. It differs from the built-in fn:min function only in treats values of all types like strings. The fn:min 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 strings
return value xs:string?

XSLT Function Declaration

See XQuery definition.
<xsl:function name="functx:min-string" as="xs:string?"
              xmlns:functx="http://www.functx.com">
  <xsl:param name="strings" as="xs:anyAtomicType*"/>

  <xsl:sequence select="
   min(for $string in $strings return string($string))
 "/>

</xsl:function>

Examples

<xsl:variable name="in-xml" as="item()*">
<in-xml>
  <x>a</x>
  <y>c</y>
  <z>b</z>
</in-xml>
</xsl:variable>
XPath ExampleResultsExplanation
functx:min-string( $in-xml/* )
a
Calling the fn:min function instead would have raised an error.
functx:min-string( (100,25,3) )
100

See Also

fn:minThe minimum of a sequence of values
functx:min-non-empty-stringThe minimum of a sequence of strings, ignoring "empty" values
functx:min-determine-typeThe minimum value in a sequence, figuring out its type (numeric or string)
functx:max-stringThe maximum 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 XSLT Services

Recommended Reading:

XQuery