Re: [basex-talk] how to export to CSV?

2020-02-15 Thread Loren Cahlander
Take a look here https://en.wikibooks.org/wiki/XQuery/Displaying_Lists Loren Cahlander > On Feb 15, 2020, at 10:40 PM, Graydon wrote: > > On Sat, Feb 15, 2020 at 07:10:46PM -0800, thufir scripsit: >> I'll read your response more carefully, but key takeaway is to maybe use >> something else? I

Re: [basex-talk] how to export to CSV?

2020-02-15 Thread Graydon
On Sat, Feb 15, 2020 at 07:10:46PM -0800, thufir scripsit: > I'll read your response more carefully, but key takeaway is to maybe use > something else? I'm futzing with powershell, seems reasonable for the task > (if a bit odd). XQuery's entirely suitable; you might not find the csv functions spe

Re: [basex-talk] how to export to CSV?

2020-02-15 Thread thufir
I'll read your response more carefully, but key takeaway is to maybe use something else? I'm futzing with powershell, seems reasonable for the task (if a bit odd). On 2020-02-15 11:47 a.m., Graydon wrote: On Sat, Feb 15, 2020 at 11:12:36AM -0800, thufir scripsit: What I'm trying to export to

Re: [basex-talk] how to export to CSV?

2020-02-15 Thread Graydon
On Sat, Feb 15, 2020 at 11:12:36AM -0800, thufir scripsit: > What I'm trying to export to, CSV: > > joe,phone1,phone2,phone3, > sue,cell4 ,home5,, > alice,atrib6,x7,y9,z10 This is the outcome you want? > What needs to be done so that it can be exported to CSV: > > > > joe > phone1 > pho

[basex-talk] how to export to CSV?

2020-02-15 Thread thufir
What I'm trying to export to, CSV: joe,phone1,phone2,phone3, sue,cell4 ,home5,, alice,atrib6,x7,y9,z10 What needs to be done so that it can be exported to CSV: joe phone1 phone2 phone3 sue cell4 home5 alice atrib6 x7 y9 z10 But not sure how to get from the above lis