问题
你需要以忽略大小写的方式搜索与替换文本字符串
解决方案
为了在文本操作时忽略大小写,你需要在使用re模块的时候给这些操作提供re.IGNIRECASE标志参数。比如:
import re
text = 'UPPER PYTHON, lower python, Mixed Python'
print(re.findall('python',text,flags=re.IGNORECASE)) # ->['PYTHON', 'python'
问题
你需要以忽略大小写的方式搜索与替换文本字符串
解决方案
为了在文本操作时忽略大小写,你需要在使用re模块的时候给这些操作提供re.IGNIRECASE标志参数。比如:
import re
text = 'UPPER PYTHON, lower python, Mixed Python'
print(re.findall('python',text,flags=re.IGNORECASE)) # ->['PYTHON', 'python'