python正则表达式--findall、finditer方法
findall方法相比其他方法,findall方法有些特殊。它的作用是查找字符串中所有能匹配的字符串,并以结果存于列表中,然后返回该列表注意:match 和 search 是匹配一次 findall 匹配所有。1 pattern.findall方法该方法的作用是在string[pos, endpos]区间从pos下标处开始查找所有满足pattern的子串, 直到endpos位置结...