天天看點

python字元串比對不區分大小寫_Python學習筆模式比對與正規表達式之不區分大小寫的比對...

随筆記錄友善自己和同路人查閱。

#------------------------------------------------我是可恥的分割線-------------------------------------------

通常,正規表達式用你指定的大小寫比對文本。

#------------------------------------------------我是可恥的分割線-------------------------------------------

示例代碼:

#! python 3

# -*- coding:utf-8 -*-

# Autor: Li Rong Yang

import re#導入子產品

robocop = re.compile(r'robocop', re.I)#傳入第二個參數re.I,使檢索時不區分大小寫

print(robocop.search('RoboCop is part man, part machine, all cop.').group())#大小寫混合

print(robocop.search('ROBOCOP protects the innocent.').group())#大寫

print(robocop.search('Al, why does your programming book talk about robocop so much?').group())#小寫

運作結果:

python字元串比對不區分大小寫_Python學習筆模式比對與正規表達式之不區分大小寫的比對...