In Vim editor, you can replace strings using the :s
command, which stands for substitute. Here’s a basic overview:
:s/old_string/new_string/
Example:
:s/foo/bar/
g
flag to the command:
:s/old_string/new_string/g
Example:
:s/foo/bar/g
\b
word boundary marker:
:s/\bold_string\b/new_string/g
Example:
:s/\bfoo\b/bar/g
s
command:
:1,10s/old_string/new_string/g
This example replaces in lines 1 to 10.
c
flag:
:%s/old_string/new_string/gc
This example replaces globally in the entire file (%
represents the whole file) and prompts for confirmation.
:w
command after the substitution command:
:%s/old_string/new_string/g | w