xml解析需要额外的空格
我一直在尝试用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用
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, dolstrip()
, as inclipData.lstrip()
.在 XML 中,空格很重要。如果您不想在数据元素中出现空格,请这样写:
In XML, whitespace is significant. If you don't want whitespace in the data element, write it like this: