如果在VI Editor中打开文件,请告诉我如何搜索指定的单词。我知道我们可以通过使用/word_to_be_search来做到这一点,但它不会对单词进行确切的搜索。

Example
/sachin will searches for sachin_server, sachin_client and not only sachin

最佳答案

请尝试:

/\<word\>
\<\>匹配单词边界。

关于vim - 在VI编辑器中打开的文件中搜索指定的单词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1914431/

10-16 17:35