The most common command in the vim editor in linux should be the find/replace Command 1. search: \ Input:/query the string and press Enter. 2. replace: \ Input: % s/replace the previous string/replace the string/g and press Enter. note: The above replacement command can only replace case-insensitive, if you want to ignore case-insensitive matching after g
Under vim
Search command
Replacement Command
The most common command in the vim editor in linux is the find/replace command.
1. search: \ Input:/query string and press enter.
2. replace: \ Input: % s/replacement string/g and press enter.
Note: The above replace command can only replace case-insensitive. if you want to ignore case-insensitive matching, add an I after g!
Replace command extension
In vi/vim, you can use the: s command to replace the string. In the past, we used only one format to replace the full text. today we found that there are many ways to write this command (vi is really powerful, and there are still a lot to learn). record several methods here to facilitate future queries.
In vi/vim, you can use the: s command to replace the string. In the past, we used only one format to replace the full text. today we found that there are many ways to write this command (vi is really powerful, and there are still a lot to learn). record several methods here to facilitate future queries.
: S/vivian/sky/replace the first vivian in the current row with sky
: S/vivian/sky/g replace all vivian in the current row with sky
: N, $ s/vivian/sky/replace the first vivian from row n to row n as sky
: N, $ s/vivian/sky/g replace all vivian values from row n to row n
N is a number. if n is., it indicates starting from the current row to the last row.
: % S/vivian/sky/(equivalent to: g/vivian/s // sky/) replace the first vivian of each row with sky
: % S/vivian/sky/g (equivalent to: g/vivian/s // sky/g) replace all
You can use # as the separator. The/in the middle will not be used as the separator.
: S # vivian/# sky/# replace the first vivian/in the current line with sky/
: % S +/oradata/apras/+/user01/apras1 + (replace with +/):/oradata/apras/replace with/user01/apras1/
*************************************
1.: s/vivian/sky/replace the first vivian in the current row with sky
: S/vivian/sky/g replace all vivian in the current row with sky
2.: n, $ s/vivian/sky/replace the first vivian from row n to row n with sky
: N, $ s/vivian/sky/g replace all vivian values from row n to row n
(N is a number. if n is., it indicates starting from the current row to the last row)
3. replace % s/vivian/sky/(equivalent to: g/vivian/s // sky/) with the first vivian of each row as sky
: % S/vivian/sky/g (equivalent to: g/vivian/s // sky/g) replace all
4. you can use # as the separator. The/in the middle will not be used as the separator.
: S # vivian/# sky/# replace the first vivian/in the current line with sky/
5. delete ^ M from the text
Problem Description: for line breaks, use the carriage return line break (0A0D) in the window, and the carriage return (0A) in linux. In this way, when you copy files on windows to unix, there will always be a ^ M. please write a shell or c program that is used in unix to filter windows files (0D.
· Use the command: cat filename1 | tr-d "^ V ^ M"> newfile;
· Run the following command: sed-e "s/^ V ^ M/" filename> outputfilename. Note that in methods 1 and 2, ^ V and ^ M indicate Ctrl + V and Ctrl + M. You must enter the file manually instead of pasting it.
· Processing in vi: first open the file using vi, press ESC, and then enter the command: % s/^ V ^ M //.
·: % S/^ M $/g
If the above method is useless, the correct solution is:
· Tr-d "\ r" <src> dest
· Tr-d "\ 015" dest
· Strings A> B
6. others
Use the s command to replace strings. The specific usage includes:
: S/str1/str2/use string str2 to replace str1 that appears for the first time in the line
: S/str1/str2/g replace all the str1 strings in the row with str2
:., $ S/str1/str2/g replace string str1 from the current row to the end of the body with string str2
: 1, $ s/str1/str2/g replace str1 with string str2
: G/str1/s // str2/g functions are the same as above
From the above replacement command, we can see that g is placed at the end of the command, which means to replace each appearance of the search string; without g, it means to only search
String is replaced for the first time. g is placed at the beginning of the command to replace all rows containing the search string in the body.
The following text is available:
Msg "haha"
Msg "hhhaaa"
I want it to become
Msg "HEADhahaTAIL"
Msg "HEADhhhaaaTAIL"
What is the replacement command?
: % S/haha \ | hhhaaa/HEAD & TAIL/