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

Sac*_*iya 8 vim editor

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

Example
/sachin will searches for sachin_server, sachin_client and not only sachin
Run Code Online (Sandbox Code Playgroud)

Nic*_*xon 19

尝试改为:

/\<word\>
Run Code Online (Sandbox Code Playgroud)

\<\>匹配字边界.