我之前问过一个问题,但由于重复而被关闭:如何使用 shell 脚本将 XML 解析为 CSV?。链接的副本中的答案建议使用名为 XMLStarlet 的工具,但我不确定如何在 OS X 上使用此工具。
此外,还有另一个问答的链接,标题为:“两个标签之间的文本“其中显示使用xslt
?的示例man xlst
不起作用,但我更深入地研究了它,它似乎是某种类型的 Perl 脚本?我发现StackOverflow 上的这个,这让我得出了这个结论。
有人可以为我提供一些关于如何在 OS X 上将 XML 文件简单地转换为 CSV 的指导吗?
答案1
应用程序 XMLStarlet 似乎是可在 OSX 上通过brew
,所以你应该能够像这样安装它:
$ brew install xmlstarlet
安装后,您可以通过命令行使用它xmlstarlet
。
用法
$ xmlstarlet
XMLStarlet Toolkit: Command line utilities for XML
Usage: xmlstarlet [<options>] <command> [<cmd-options>]
where <command> is one of:
ed (or edit) - Edit/Update XML document(s)
sel (or select) - Select data or query XML document(s) (XPATH, etc)
tr (or transform) - Transform XML document(s) using XSLT
val (or validate) - Validate XML document(s) (well-formed/DTD/XSD/RelaxNG)
fo (or format) - Format XML document(s)
el (or elements) - Display element structure of XML document
c14n (or canonic) - XML canonicalization
ls (or list) - List directory as XML
esc (or escape) - Escape special XML characters
unesc (or unescape) - Unescape special XML characters
pyx (or xmln) - Convert XML into PYX format (based on ESIS - ISO 8879)
p2x (or depyx) - Convert PYX into XML
<options> are:
-q or --quiet - no error output
--doc-namespace - extract namespace bindings from input doc (default)
--no-doc-namespace - don't extract namespace bindings from input doc
--version - show version
--help - show help
Wherever file name mentioned in command help it is assumed
that URL can be used instead as well.
Type: xmlstarlet <command> --help <ENTER> for command help
XMLStarlet is a command line toolkit to query/edit/check/transform
XML documents (for more information see http://xmlstar.sourceforge.net/)
例子
假设您有这个示例文件,sample.xml
.
$ cat sample.xml
<root>
<record id="1">
<keyA>val_1A</keyA>
<keyB>val_1B</keyB>
</record>
<record id="2">
<keyA>val_2A</keyA>
<keyB>val_2B</keyB>
</record>
<record id="3">
<keyA>val_3A</keyA>
<keyB>val_3B</keyB>
</record>
</root>
要将此文件解析为 CSV,对于每条记录 (1, 2, 3),每条记录对应的值 (keyA, keyB),在一行上,您可以使用concat
如下命令:
$ xmlstarlet \
sel -T -t -m /root/record \
-v "concat(@id,',',keyA,',',keyB)" \
-n sample.xml
这将产生以下输出:
1,val_1A,val_1B
2,val_2A,val_2B
3,val_3A,val_3B
上述命令中的 workhouse 行就是该concat()
函数。这是从 XML 记录中获取元素/root/record
。