python正则表达式如何不区分大小写
使用python的re模块做模式匹配时,有时需要忽略大小写,只需要在re.search()函数中添加参数re.IGNORECASE即可。
相关推荐:《Python教程》
mystring = 'some string' pattern = 'some pattern' match = re.search(pattern, mystring, re.IGNORECASE)
来源:PY学习网:原文地址:https://www.py.cn/article.html