finditer方法的认识

一、finditer查找字符

finditerfindall类似,只是返回的是一个迭代器(需要遍历)

  • 1、使用案例

    import re
    
    res = re.finditer(re.compile('[a-z]+', re.IGNORECASE), 'jhkjhkkh12jkjk32h2jj4j345jj333ASS')
    for item in res:
        print(item.group())
    

results matching ""

    No results matching ""