是否有用于解析 Acrobat XFDF 的 Nokogiri 示例代码?
我正在寻找一个 ruby 代码片段,该片段显示如何使用 Nokogiri 解析 Acrobat XFDF 数据。
I am looking for a ruby code snippet that shows use of Nokogiri to parse Acrobat XFDF data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它与解析任何其他 XML 没有什么不同:
它使用 XML 命名空间,因此您必须在 xpath 中尊重这一点,或者通过告诉 Nokogiri 忽略它们来处理它,但这在 XML 中很常见。
It's no different than parsing any other XML:
It uses a XML namespace, so you have to honor that in the xpaths, or deal with it by telling Nokogiri to ignore them, but this is common in XML.
您可以使用
[nguyen][1]
gem 进行解析工作You can use
[nguyen][1]
gem to do parsing job