Fix http help lint
[factor/jcg.git] / extra / msxml-to-csv / msxml-to-csv.factor
blob839fcaaf54d30d6c4746b9a39d572c01e7f9ceff
1 USING: io io.files sequences xml xml.utilities
2 io.encodings.ascii kernel ;
3 IN: msxml-to-csv
5 : (msxml>csv) ( xml -- table )
6     "Worksheet" tag-named
7     "Table" tag-named
8     "Row" tags-named [
9         "Cell" tags-named [
10             "Data" tag-named children>string
11         ] map
12     ] map ;
14 : msxml>csv ( outfile infile -- )
15     file>xml (msxml>csv) [ "," join ] map
16     swap ascii set-file-lines ;