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.
正则表达式匹配的最有效方法是什么:
测试 测试用例_ 测试仪
测试
测试用例_
测试仪
最后一个不应该匹配。
使用单词边界:
/test\b/
这意味着单词必须在 之后结束test。
test
\btest\b
\b是词边界锚。
\b