解析完整的xml值

发布于 2025-01-07 07:06:07 字数 430 浏览 0 评论 0原文

我有以下 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 技术交流群。

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

发布评论

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

评论(1

鸠书 2025-01-14 07:06:07

我无法在这里找到解析完整值的解决方案。相反,我使用基于其他逻辑的 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.

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