gpt4 book ai didi

python - 将编译器错误输出到python中的txt文件

转载 作者:太空宇宙 更新时间:2023-11-03 18:33:38 30 4
gpt4 key购买 nike

我是一个使用Python的初学者。我想创建一个正则表达式来捕获 python 中编译器输出的错误消息。我该怎么做?

例如,如果编译器输出以下错误消息:

Traceback (most recent call last):
File "sample.py", line 1, in <module>
hello
NameError: name 'hello' is not defined

我希望能够仅从输出中提取以下字符串:

NameError: name 'hello' is not defined

在这种情况下,只有一个错误,但我想提取编译器输出的所有错误。如何使用正则表达式来做到这一点?或者如果有更简单的方法,我愿意接受建议

最佳答案

r'Traceback \(most recent call last\):\n(?:[ ]+.*\n)*(\w+: .*)'

应该提取你的异常;回溯包含除异常行之外全部以空格开头的行。

上面匹配回溯第一行的文字文本,0个或更多以至少一个空格开头的行,然后捕获以1个或多个单词字符开头的下一行(这非常适合Python标识符) 、冒号,然后其余部分直到行尾。

演示:

>>> import re
>>> sample = '''\
... Traceback (most recent call last):
... File "sample.py", line 1, in <module>
... hello
... NameError: name 'hello' is not defined
... '''
>>> re.search(r'Traceback \(most recent call last\):\n(?:[ ]+.*\n)*(\w+: .*)', sample).groups()
("NameError: name 'hello' is not defined",)

关于python - 将编译器错误输出到python中的txt文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21963677/

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