解析完整的xml值
我有以下 xml 片段:
<title><![CDATA[ ヴァン・ヘルシング (字幕版)]]></title>
为了解析该值,我正在执行以下操作:
title=node.xpath("//t:title")
title = title[0].text
u' \u30f4\u30a1\u30f3\u30fb\u30d8\u30eb\u30b7\u30f3\u30b0 (\u5b57\u5e55\u7248)'
但是,该值仅提供 CDATA 标记中的日语内。
我如何获得标题元素中的整个值。即 ?
I have the following piece of xml:
<title><![CDATA[ ヴァン・ヘルシング (字幕版)]]></title>
To parse the value, I am doing:
title=node.xpath("//t:title")
title = title[0].text
u' \u30f4\u30a1\u30f3\u30fb\u30d8\u30eb\u30b7\u30f3\u30b0 (\u5b57\u5e55\u7248)'
However, this value is only giving me the Japanese within the CDATA tag.
How would I get the entire value within the title element. That is, <![CDATA[ ヴァン・ヘルシング (字幕版)]]>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法在这里找到解析完整值的解决方案。相反,我使用基于其他逻辑的
CDATA
包装器。I was not able to find a solution here in terms of the parsing of the full value. Instead, I am using a
CDATA
wrapper based on some other logic.