[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

John Snelson john.snelson at oracle.com
Fri Oct 17 16:18:19 PDT 2008


  Whitespace problem in CSV-like output
Hi Yves,

The whitespace is added as a separator when the multiple strings 
returned from your query are concatenated. To stop it, wrap the entire 
query in a call to string-join(), like this:

string-join(
let $entries := /list/entry
for $property1 in distinct-values($entries/property1),

...<snip>...

         ";"),
       "&#10;")),
"")

XQuery doesn't have a built in way to read numbers using decimal commas, 
so the way you are doing it is about as good as it gets.

John

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.
> 
> It works quite well, except that a space gets inserted at the front of 
> each line starting from the second line in the output.
> 
> My demo input is:
> 
> <?xml version='1.0'?>
> <list>
>   <entry>
>     <property1>A</property1>
>     <property2>33</property2>
>     <quantity>1,5</quantity>
>   </entry>
>   <entry>
>     <property1>A</property1>
>     <property2>33</property2>
>     <quantity>0,5</quantity>
>   </entry>
>   <entry>
>     <property1>B</property1>
>     <property2>22</property2>
>     <quantity>0,5</quantity>
>   </entry>
> </list>
> 
> My XQuery file has:
> 
> declare namespace saxon="http://saxon.sf.net/";
> declare option saxon:output "method=text";
> 
> let $entries := /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(
>     concat(
>       string-join(
>         ($property1, $property2,
>          replace(xs:string(
>                    sum(for $quantity in $selected_entries/quantity
>                        return xs:decimal(replace($quantity, ",", ".")))),
>                  "\.",
>                  ",")),
>         ";"),
>       "&#10;"))
> 
> The result as obtained with Saxon 8.8.0.4J is:
> 
> A;33;2
>  B;22;0,5
> 
> It is the space at the beginning of the second line that I can't get 
> away with. Can you explain what I am doing wrong here and maybe suggest 
> a solution?
> 
> (Another question: Within my "quantity" elements, I use the German 
> decimal separator which is a comma. Is there a more elegant way than 
> translating it to a dot and back, like above, when summing up the values 
> found in this element?)
> 
>   Yves
> _______________________________________________
> http://x-query.com/mailman/listinfo/talk
> http://x-query.com/mailman/listinfo/talk


-- 
John Snelson, Oracle Corporation            http://snelson.org.uk/john
Berkeley DB XML:            http://oracle.com/database/berkeley-db/xml
XQilla:                                  http://xqilla.sourceforge.net


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-2007 All Rights Reserved.