在Vim中,如何搜索单词边界字符,例如regexp中的\ b?


Answers:


155

/the\>

看到 :help /ordinary-atom

我假设“ regexp”表示PCRE。值得注意的是,Vim的regex语法与PCRE不同(并且显然早于PCRE)。

也可以看看:


1
\ b为什么不起作用?vim不符合正则表达式?

4
我假设您是指Perl兼容的正则表达式。Vim的regex语法早于PCRE。我添加了相关问题的链接。
亚当·蒙森

“ regexp”并不意味着PCRE。它只是“ regex”的同义词。
henrebotha



15

如果您要在光标处搜索单词。您可以按一下*,或#进行向后搜索。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.