gpt4 book ai didi

java - 不区分大小写的 RegEx 模式

转载 作者:行者123 更新时间:2023-11-29 03:28:04 30 4
gpt4 key购买 nike

我想搜索具有以下内容的字符串:Code[spaces]VARCHAR

目前我正在使用:\bCode\s+VARCHAR\b

如何让这种大小写不敏感?

最佳答案

Reference

试试这个

/\bCode\s+VARCHAR\b/i

或者

(?i)\bCode\s+VARCHAR\b

Explained here

关于java - 不区分大小写的 RegEx 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19926080/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com