我想在删除整个子节点后重新打印修改后的xml
<product>
<book>
<id>111</id>
<name>xxx</name>
</book>
<pen>
<id>222</id>
<name>yyy</name>
</pen>
<pencil>
<id>333</id>
<name>zzz</name>
</pencil>
我想删除“铅笔”节点并使用 REXML (Ruby) 打印剩余的 xml。有人能告诉我该怎么做吗?
<product>
<book>
<id>111</id>
<name>xxx</name>
</book>
<pen>
<id>222</id>
<name>yyy</name>
</pen>
<pencil>
<id>333</id>
<name>zzz</name>
</pencil>
I want to remove the "pencil" node and print the remaining xml using REXML (Ruby). Can anybody tell me how to do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过使用删除方法之一 http://rubydoc.info/stdlib/rexml/
还有很好的入门教程:http://www.germane-software.com/software/rexml/docs/tutorial.html
By using one of the delete methods http://rubydoc.info/stdlib/rexml/
There is also nice tutorial to get you started: http://www.germane-software.com/software/rexml/docs/tutorial.html