Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的正则表达式:
(?i)(test){1,3}
这是我用来测试的字符串:
测试测试测试测试
我正在使用 rubular.com 进行测试。
我对正则表达式的解释是
不区分大小写,搜索不带引号的单词 test 最多 3 次,但最少 1 次。
在输出结果的那一行,我的“测试”这个词高亮了 4 次吗?为什么不只突出显示3次?我以为它会最少搜索 1 次,最多搜索 3 次?