方法/属性 | 描述 |
r.search(string[,pos[,endpos]]) | 同search()函数,但此函数允许指定搜索的起点和终点 |
r.match(string[,pos[,endpos]]) | 同match()函数,但此函数允许指定搜索的起点和终点 |
r.split(string[,max]) | 同split()函数 |
r.findall(string) | 同findall()函数 |
r.sub(replace,string[,count]) | 同sub()函数 |
r.subn(replace,string[,count]) | 同subn()函数 |
r.flags | 创建对象时定义的标志 |
r.groupindex | 将r'(?Pid)’定义的符号组名字映射为组序号的字典 |
r.pattern | 在创建对象时使用的模式 |