正則表達式中的flags

re.I    IGNORECASE, 忽略大小寫的匹配模式 In [59]: s = 'hello World!' In [60]: regex = re.compile("hello world!", re.I) In [61]: regex.match(s).group() Out[61]: 'hello World!' re.M    MULTILINE,多行模式, 改變 ^ 和 $
相關文章
相關標籤/搜索