解析 Querypath 中有问题的 XML(元素中的点)

发布于 2024-11-15 14:16:31 字数 289 浏览 0 评论 0 原文

我正在尝试使用查询路径解析 NewsML (http://www.iptc.org/std/NewsML-G2/2.7/examples/LISTING2_NewsML-G2_Complete.xml)文档。但我在处理某些元素中的点时遇到了麻烦,例如

在一些 Firefox 查询路径插件中,我可以用反斜杠转义点,但在 php pear 库中这不起作用。

有什么想法吗?

(我正在 Querypath 中寻找解决方案,而不是寻找解决方法)

I am trying to parse an NewsML (http://www.iptc.org/std/NewsML-G2/2.7/examples/LISTING2_NewsML-G2_Complete.xml) document with querypath. But I have trouble with the dots in some elements, like <body.head>.

In some firefox querypath plugins I am able to escape the dot with a backslash, but in the php pear library this does not work.

Any ideas?

(I am looking for solution within Querypath, not for workarounds)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦亿 2024-11-22 14:16:31

过去,我使用 Tidy PHP 扩展 (http://us3.php.net/manual/en/book.tidy.php) 在将 HTML/XML 传递到 QueryPath 之前清理它。

您上面引用的 XML 非常干净,而且也非常小。

如果唯一的问题是元素名称中的点,那么使用正则表达式进行预处理也可能有效。这将是最快的解决方案。我猜你可以执行 preg_replace('/ 并将其修复。 (这会将 body.content 替换为 body-content 等等。)

In the past, I've used the Tidy PHP extension (http://us3.php.net/manual/en/book.tidy.php) to clean up HTML/XML before passing it into QueryPath.

The XML you referenced above is pretty clean, and also pretty small.

If the only issue is dots in element names, preprocessing with a regular expression would probably work, too. And it would be the fastest solution. I'm guessing you could do a preg_replace('/<body\./g', '<body-', $xml) and have it fixed. (That would replace body.content with body-content and so on.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文