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.
我有一个几乎是我需要的正则表达式。我确信这是重复的重复但是我找不到我正在寻找的答案。
我需要的正则表达式是一个表达式,它将匹配一个不跟空格的括号,但是我只希望它匹配括号。
(\([^\s])
这将匹配所有后面没有空格的括号,但是它也匹配括号后面的字符。我如何只匹配括号?
使用零宽度断言前瞻
\((?=\S)
或者
\((?=[^\s])