gpt4 book ai didi

python - Python use re 中如何匹配这种字符串?

转载 作者:太空宇宙 更新时间:2023-11-04 10:38:51 25 4
gpt4 key购买 nike

我有几个这样的字符串:

unicode 0, <runtime error >,0
unicode 0, <TLOSS error>
unicode 0, <- Attempt to use MSIL code >
unicode 0, <ModuleNameA>

我正在尝试使用 re 来匹配 "<"">"中的所有字符串

我试过这个:

items = line.split()
pattern = r"<.+?>"
match = re.findall(pattern, items[2])

但是空间好像不能处理..

谁能帮帮我?

谢谢!

最佳答案

items[2] 包含部分内容:

>>> items = line.split()
>>> items[2]
'<runtime'

只需将传递给re.findall:

>>> line = 'unicode 0, <runtime error >,0'
>>> re.findall(r'<.+?>', line)
['<runtime error >']

关于python - Python use re 中如何匹配这种字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21992519/

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