[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]
Re: [xml-dev] XML representation of tab-delimited text files?
- From: David Carlisle <d.p.carlisle@gmail.com>
- To: "Costello, Roger L." <costello@mitre.org>
- Date: Thu, 22 Sep 2016 17:30:28 +0100
<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>
[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]