compile的时候加不加re.I好像没啥区别?
str1="imooc python, Imoocvb, imoocc++"
a1=re.compile(r"imooc").match(str1).string
a2=re.compile(r"imooc",re.I).match(str1).string
好像加不加re.I,对a1和a2的运行结果没差,都是imooc python, Imoocvb, imoocc++
str1="imooc python, Imoocvb, imoocc++"
a1=re.compile(r"imooc").match(str1).string
a2=re.compile(r"imooc",re.I).match(str1).string
好像加不加re.I,对a1和a2的运行结果没差,都是imooc python, Imoocvb, imoocc++
2020-03-26
举报