根据 Python 文档 如果想要比匹配文本更多关于模式所有匹配的信息,finditer() 很有用,因为它提供匹配对象而不是字符串。如果一个作家想找到文本中所有副词及其位置,他会以如下方式使用 finditer() −>>> text = "He was carefully disguised but captured quickly by police." >>> for m in re.finditer(r"\w+ly", text): ... print('%02d-%02d: %s' % (m.start(), m.end(), m.group(0))) 07-16: carefully 40-47: quickly