看一下的定义
re.sub:
re.sub(pattern, repl, string[, count, flags])
re.MULTILINE(是8)作为计数,而不是标志。
使用命名参数:
re.sub('^//', '', s, flags=re.MULTILINE)
或先编译正则表达式:
re.sub(re.compile('^//', re.MULTILINE), '', s)
欢迎分享,转载请注明来源:内存溢出
看一下的定义
re.sub:
re.sub(pattern, repl, string[, count, flags])
re.MULTILINE(是8)作为计数,而不是标志。
使用命名参数:
re.sub('^//', '', s, flags=re.MULTILINE)
或先编译正则表达式:
re.sub(re.compile('^//', re.MULTILINE), '', s)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)