1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
(:**************************************************************:)
(: Test: functx-fn-string-all :)
(: Written by: Priscilla Walmsley (Frans Englich is maintainer) :)
(: Date: 2008-05-16+02:00 :)
(:**************************************************************:)
declare namespace functx = "http://www.example.com/";
let $in-xml-2 := <product dept="MEN">
<number>784</number>
<name language="en">Cotton Dress Shirt</name>
<colorChoices>white gray</colorChoices>
<desc>Our <i>favorite</i> shirt!</desc>
</product>
return (string($in-xml-2/number), string($in-xml-2/desc), string($in-xml-2/@dept))
|