Regex: ignore case sensitivity

后端 未结 13 1821
孤城傲影
孤城傲影 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 07:01

    You can practice Regex In Visual Studio and Visual Studio Code using find/replace.

    You need to select both Match Case and Regular Expressions for regex expressions with case. Else [A-Z] won't work.enter image description here

    Visual Studio 2019 Community

提交回复
热议问题