我想在python中解析一个关闭格式的字符串
“JXE 2000 This is a bug to fix blah” 或格式
“JXE-2000: This is a bug to fix blah” 并检查字符串是否包含 JXE 和数字。
在上面的例子中,我需要检查字符串是否有 JXE 和 2000。我是 python 新手。
我尝试了以下方法:
textpattern="JXE-5000: This is bug "
text=re.compile("^([A-Z][0-9]+)*$")
text=re.search("JXE (.*)", textpattern)
print (text.groups())
我似乎只得到“5000 这是一个错误”。