在VI编辑器中打开的文件中搜索指定的单词

时间:2009-12-16 12:39:30

标签: vim editor

如果在VI Editor中打开文件,请告诉我如何搜索特定单词。我知道我们可以使用/ word_to_be_search来完成它,但它不会对该单词进行精确搜索。

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

3 个答案:

答案 0 :(得分:19)

尝试改为:

/\<word\>

\<\>匹配字词边界。

答案 1 :(得分:4)

/\<sachin\>

\<是单词的开头,\>是单词标记的结尾。

答案 2 :(得分:-1)

这样做:

/ \