[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message]

Whitespace problem in CSV-like output

Per Bothner per at bothner.com
Fri Oct 17 03:19:25 PDT 2008


  Whitespace problem in CSV-like output
Yves Forkl wrote:
> Hi,
>
> from a very simple XML input, I would like to create a CSV-like 
> output, putting each record (as I see them) in a line of its own, with 
> its fields separated by some delimiter like a semicolon. 
A trick is to use text nodes, because that suppresses the extra spaces:

let $entries := doc("file:/home/bothner/tmp/demo.xml")/list/entry

for $property1 in distinct-values($entries/property1),
    $property2 in distinct-values($entries[property1 = 
$property1]/property2)
  let $selected_entries := $entries[property1 = $property1 and
                                           property2 = $property2]
  order by $property1, $property2
   return(
      string-join(
        ($property1, $property2,
         replace(xs:string(
                   sum(for $quantity in $selected_entries/quantity
                       return xs:decimal(replace($quantity, ",", ".")))),
                 "\.",
                 ",")),
        ";"),
      text{"
"})

Produces:
A;33;2
B;22;0,5

(I haven't tested this on Saxon, just Qexo.)



PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2011 All Rights Reserved.