我有一个像下面这样的字符串,我想同时获得两个数字“28”和“1”,但现在我只能通过我的代码获得“28”。请帮我解决一下这个。
import re
content="""<span class="lineNum"> 28 </span><span class="lineCov"> 1 : get_pid_file(const char *file, pid_t *pid)</span>"""
pattern = "(\d+)"
ret = re.search(pattern,content)
if ret:
print "find: %s" % ret.group()