-3

我有数千个 XML 文件,我想将它们合并到一个 XML 文件中。在 java 中,我可以在几秒钟内完成,但在 perl 脚本中非常新。谁能建议我们如何使用perl 脚本来做到这一点?每一个建议都值得赞赏。所有 XML 文件都具有相同的结构、相同的编码。唯一不同的是标签上的数据。

4

1 回答 1

4

Parse both docs. I'd use XML::LibXML. Find the node that is to be the parent of the nodes you want to merge in. For each node you want to merge in, insert that node as a child of the previously found parent.

于 2013-06-07T02:13:49.613 回答