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.
正如标题所说,有没有办法防止 .tmLanguage 语法高亮中“匹配”中的特定字符?例如,匹配除 w 和 s 之外的所有内容。
我相信[^ws]这就是你要找的。^是一个正则表达式否定运算符。因此,就像您[abc]用来匹配 a、b 或 c 一样,^在开头添加会否定它。只要确保它在方括号内。
[^ws]
^
[abc]