net.sf.cglib.proxy.Enhancer Generates dynamic subclasses to enable method interception. This class started as a substitute for the standard Dynamic Proxy support included with JDK 1.3, but one that allowed the proxies to extend a concrete base class,…
import re findall() 烦的奥 import re # 1. findall 查找所有结果,数据不是特别庞大 lst = re.findall('a','abcsdfasdfa') print(lst) finditer() 烦的一特 #2. finditer 找到的结果返回迭代器 it = re.finditer(r'\d+','你好啊200,哈哈233') for el in it:#从迭代器中获取到的是分组的信息 print(el.group())#个肉破,获取具体信息…