Editors Question:
Download Job Interview Questions and Answers PDF
Which command is used to replace many characters?
Answer:
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
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
Download Editors Interview Questions And Answers
PDF
Previous Question | Next Question |
How to enter from command mode to insertion mode? | What does the /text command do? |