How to serach a sting inside vi editor?
-
/search_string
-
%search_string
-
_search_strin
-
None
A
Correct answer
Explanation
In vi editor, searching is done with / followed by the search string. The pattern /search_string will search forward for 'search_string' in the file. The % and _ prefixes are not valid vi search commands. Note the question has typos: 'serach' should be 'search' and 'sting' should be 'string'.