factor/extra/msxml-to-csv/msxml-to-csv.factor

19 lines
448 B
Factor
Raw Normal View History

USING: io io.files sequences xml xml.utilities io.encodings.utf8 ;
2007-09-20 18:09:08 -04:00
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 -- )
utf8 [
2007-09-20 18:09:08 -04:00
file>xml (msxml>csv) print-csv
] with-file-writer ;