Next in thread → Next in month →

Re: [xml-dev] XML representation of tab-delimited text files?

From
David Carlisle <>
To
"Costello, Roger L." <>
Date
2016-09-22T16:30:28Z
ID
<CAEW6iOhbiEaCpckSM08O==>
Thread
Re: [xml-dev] XML representation of tab-delimited text files?
<Row>
    <A>foo</A>
    <B/>
    <C>bar</C>
</Row>

assumes you use a custom schema for each set of headings, a more
generic scheme would be

<Table>
<Head>
    <Cell>A</Cell>
    <Cell>B</Cell>
    <Cell>C</Cell>
</Head>
<Row>
    <Cell>foo</Cell>
    <Cell/>
    <Cell>bar</Cell>
</Row>
</Table>
Next in thread → Next in month →