Which command is used to replace many characters?
Answers were Sorted based on User's Feedback
Answer / amita
change command can be used to change a word/line.
cw change word forward
cb change word backward
c$ change from cursor to end of line
cL change from current line to and of screen
cG change from current line to and of file
or if you want to replace all occurence of some specific
character
:%s/oldText/newText/g
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / gourab ranjan seth
press esc, then R to replace multiple characters
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ali ahsan
Try
:%s/<Character1>/blah/cge | %s/<character2>/222/cge
and so on.
OR if you have to replace many charcters with single charcter you can try as mentioned below
:%s/<Character1|character2|.....>/blah/cge
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between ZZ and :wq commands?
How to return to shell without leaving vi editor?
What is the difference between lettered buffer and temporary buffer?
what is the command used to set margin in vi editor?
what are the different commands used to quit from the vi editor?
What does the /text command do?
what are the two different modes in vi editor?
HOW WE CAN MAKE THE DLIEVERY WHICH IS BLOCKED DUE TO CREDIT LIMIT.
How to replace String "a" with String "b" in whole file of the vi editor?
How to create a .exrc file in vi editor?
How to append a file to current file?
What is the command used to display line numbers in vi editor?