matched = value.group()
来源:10-11 re.sub正则替换
宋波丶
2018-12-11
import re s = ‘pythonC#GOjavaphpjsC#’ def convert(value): matched = value.group() #sub函数中c#被当做参数传到了函数convert中 return ‘!!’+ matched + ‘!!’ #且value是一个对象 r = re.sub(‘c#’,convert,s,1,re.I) print® 请问matched = value.group(),不应该是matched = value()吗,为什么要加.group
写回答
1回答
-
7七月
2018-12-12
麻烦 编辑下,看不太懂啊。
00
相似问题