2007-09-20 18:09:08 -04:00
|
|
|
USING: io io.files sequences xml xml.utilities ;
|
|
|
|
IN: msxml-to-csv
|
|
|
|
|
|
|
|
: print-csv ( table -- ) [ "," join print ] each ;
|
|
|
|
|
|
|
|
: (msxml>csv) ( xml -- table )
|
|
|
|
"Worksheet" tag-named
|
|
|
|
"Table" tag-named
|
|
|
|
"Row" tags-named [
|
|
|
|
"Cell" tags-named [
|
|
|
|
"Data" tag-named children>string
|
|
|
|
] map
|
|
|
|
] map ;
|
|
|
|
|
|
|
|
: msxml>csv ( infile outfile -- )
|
2008-02-15 23:20:31 -05:00
|
|
|
[
|
2007-09-20 18:09:08 -04:00
|
|
|
file>xml (msxml>csv) print-csv
|
2008-02-15 23:20:31 -05:00
|
|
|
] with-file-writer ;
|