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.
我想选择除以字符串 . 开头的所有空格字符之外的所有空格字符Send,。
Send,
前瞻使用(?!)将不起作用。还有什么方法可以做到这一点?
(?!)
听起来像往后看就足够了。如果字符串Send,紧接在您想要的空间之前,那么它将是:
(?<!Send,)\s
如果字符串没有直接出现在空格之前,那么您的选项可能取决于您特定的正则表达式风格,因为许多不支持可变长度查找。