Regex: ignore case sensitivity

后端 未结 13 1842
孤城傲影
孤城傲影 2020-11-22 06:11

How can I make the following regex ignore case sensitivity? It should match all the correct characters but ignore whether they are lower or uppercase.

G[a-b]         


        
13条回答
  •  一生所求
    2020-11-22 06:44

    In Java, Regex constructor has

    Regex(String pattern, RegexOption option)
    

    So to ignore cases, use

    option = RegexOption.IGNORE_CASE
    

提交回复
热议问题