xml解析需要额外的空格

发布于 2024-10-15 21:14:06 字数 477 浏览 2 评论 0原文

我一直在尝试用 python 编写/解析 xml 文件。标签非常简单,

<main>
   <data>
     abcdef
   </data>
</main>

我使用 xml.dom.minidom 中的 xml 文档编写器编写了此 xml。

然而,当我尝试解析它并尝试获取数据文本值时,我得到“abcdef”,其中包含空格/回车/换行符。 解析是否不需要缩进空格? 以下是解析片段(参考自网络)

dom = parseString(data)
clipTag = dom.getElementsByTagName('clipdata')[0].toxml()
clipData=clipTag.replace('<clipdata>','').replace('</clipdata>','')

请建议。

I have been trying to write/parse xml file in python. The tags are very simple

<main>
   <data>
     abcdef
   </data>
</main>

I have written this xml using xml document writer from xml.dom.minidom.

How-ever when i try to parse this and try to fetch data-text value, i get 'abcdef' with spaces/carriage return/newline characters in beg and end.
Does parsing does not take of indenting spaces?
Following is the parsing snippet (ref from net)

dom = parseString(data)
clipTag = dom.getElementsByTagName('clipdata')[0].toxml()
clipData=clipTag.replace('<clipdata>','').replace('</clipdata>','')

Kindly suggest.

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

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

发布评论

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

评论(2

紫罗兰の梦幻 2024-10-22 21:14:06

只需使用 strip() 删除多余的空白即可。如果您只想删除前导空格,请执行 lstrip(),如 clipData.lstrip() 所示。

Just use strip() to take out the extra white space. If you only want to take out the leading white space, do lstrip(), as in clipData.lstrip().

久隐师 2024-10-22 21:14:06

在 XML 中,空格很重要。如果您不想在数据元素中出现空格,请这样写:

<main>
   <data>abcdef</data>
</main>

In XML, whitespace is significant. If you don't want whitespace in the data element, write it like this:

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