优秀是一种习惯
分类: Python/Ruby
2013-04-08 12:45:07
lizisong19882016-10-05 17:05:17
def list_sub(pattern,repl,t,rep_nu,flags):
tx=\"\".join(t[rep_nu:])
tx = re.sub(pattern,repl,tx,flags)#warning!the flags here give value to max in sub function
return \"\".join(t[:rep_nu])+tx
修改了一下前面的函数,这样flags也能生效了,控制替换的个数.subExt中的number控制替换的开始位置