gpt4 book ai didi

python - 在错误的 XML 情况下捕获错误

转载 作者:行者123 更新时间:2023-11-28 22:01:36 28 4
gpt4 key购买 nike

我正在使用 xml.dom.minidom 从字符串中解析一些 XML。当提供的 XML 格式不正确时,我需要处理错误情况。我会发现什么错误?

换句话说,应该用什么替换下面的BadXml

try:
from xml.dom import minidom
in_xml = minidom.parseString(some_string)
except BadXml:
handle_bad_xml(some_string)

最佳答案

我想这就是你想要的:

from xml.parsers.expat import ExpatError

try:
from xml.dom import minidom
in_xml = minidom.parseString(some_string)
except ExpatError:
handle_bad_xml(some_string)

关于python - 在错误的 XML 情况下捕获错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12780458/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com