python正则表达式如何不区分大小写

2024年07月26日 正则表达式 Python51

使用python的re模块做模式匹配时,有时需要忽略大小写,只需要在re.search()函数中添加参数re.IGNORECASE即可。

mystring = 'some string'
pattern = 'some pattern'
match = re.search(pattern, mystring, re.IGNORECASE)

本文链接:http://so.lmcjl.com/news/9221/

展开阅读全文