我想寫一個正則表達式,掃描字符串並找到所有的實例「你好」,大寫和小寫字母。問題是,當一個簡單的在字符串正則表達式Python的大寫和小寫標準
the_list = re.compile(r'hello')
就足夠了只有「你好」的字符串,我想表達的是能夠找到的「你好」所有版本都大寫和小寫字母,如:
Hello, HELlo, hEllo, HELLO, heLLO, etc.
我也曾嘗試:
the_list = re.compile(r'[a-z][A-Z]hello')
,但沒有運氣。任何人都可以解釋一個更好的方式來寫這個正則表達式?
使用:'the_list = re.compile(r'hello',re.I)'使其忽略大小寫 – anubhava