Skip to main content

Programmer's Guide: Find and Replace with Vim

Many of us don't like Vim because of it's unconventional and unique command set. But if you get to know certain functionalities common to other popular editors, you would not be required to lift your hands from keyboard while typing. One such functionality that we often use in editors is "Find and Replace". The same feature, with many more customizations, is also provided by Vim. This post will focus on various Find and Replace features of Vim.

Let's start with a file which contains a lot of "lorem ipsum".

Now let us replace "lorem ipsum" with "hello world".

First, we will focus on replacing "lorem" with "hello" in the first line. We need to execute following command in vim.
:s/lorem/hello/g

The :s signifies "substitute" command provided by vim.
The g flag at the end means "global". This means that all the occurrences in the selected context will be changed. In this case, all the occurrences in the first line will be changed.

In the below image, you can see "lorem" has been replace by "hello" in the first line.


Let us now replace all the "lorem" with "hello". To replace all, we use :%s instead of :s.
Command:
:%s/lorem/hello/g


If you observe closel, the "Lorem" in the second line has not been replaced. This is because, by default, the substitute function is case-sensitive. We need to use i flag to make it case-insensitive.
Command:
:%s/lorem/hello/gi


But Find and Replace (F&R) tools also ask for confirmation before actually making changes. Can we do that in vim? Yes of course! Vim can do everything that a normal F&R tool can do. Just use c flag at the end. Let us replace all the "ipsum" with "world".
Command:
:%s/ipsum/world/gc

Here,
y: yes, replace this match
n: no, skip this match
a: all, replace all
q: quit
l: last match i.e.replace this match and exit
The last two are just to scroll up or down.

So, after pressing a, we have accomplished our objective of replacing "lorem ipsum" with "hello world".

Finally, when we want to replace exactly matching words and not all the matches, for example, in the above file if we want to replace "is" with "was" but do not want to replace the substring "is" in "This", we can use the following command:
:%s/\&#60is\&#62/was/gc



There are many more uses of Vim ":substitute" command. I hope this post will encourage you to explore more about them. I would recommend using command line and Vim to work with files on remote servers.

Comments

Popular posts from this blog

CRIF HighMark Credit Report Application Process

As per the RBI circular of 2017, you are entitled to get one free credit report every calendar year from each credit bureaus in India. CRIF HighMark is one of the four credit bureaus in India. This article will focus on creating a new account and getting your yearly free credit report. Visit the official website of CRIF HighMark https://www.crifhighmark.com/your-credit-score  In the next screen, click on " Get Your Score Now"  Register After registering, follow the below steps: Enter Personal Details Full Name DOB Email ID Mobile Number Gender Father's Name or Spouse Name Identification PAN or UID necessary Rest optional Communication Address CAPTCHA Review Terms of Use and Click Submit Choose free report Click " No Thanks, Take me to my FREE report " below the Upgrade me button. You will receive a confirmation email with your username and password and activation link. Click on activation link to...

My Entry into the World of Credit Cards

After joining my job in June 2018, my salary account was opened in ICICI Bank. During the account opening process, I was offered a Life Time Free (LTF) credit card. Simply put, this was my first chance to get into the credit world without any extra hassle because first of all, neither was I aware of the concept of credit scores nor I had any credit history and secondly, I was just curious about credit cards after seeing of my father use his credit cards with extra caution and the monthly event of credit card bill payment that used to happen at my home. And in that sudden moment of joy, I made my first mistake in the credit world. Representative Image (Source: https://jessepollak.github.io/card/) Now if your guess is that I started spending crazy amounts of money which I couldn't repay, then you are WRONG! I am a miserly person. Money doesn't leave my hands and in general, my credit utilization has never exceeded 5% of my credit limit. So coming back to my first mis...

Generate Large Files in Linux using dd

The programming community often requires large files for stress testing programmes. For example, sometimes such files are required to check the response time of certain programme or testing request handling capacity of servers. Many times, it does not matter what the contents of the file are, however, it is often difficult to find such large files when the need arises. Linux provides us a fast, efficient way of generating such huge files through simple command line options. For the purposes of this demo, I am using Ubuntu 16.04 and 18.04 linux distros. Ubuntu provides dd command to create such huge files in a matter of seconds. A typical dd command to create a 1 GB file is given below. dd if=/dev/zero of=big_file.txt count=1024 bs=1048576 parameters of dd: if - input file from which the content is read of - output file where the content is written count - number of blocks in output file bs - number of bytes in each block The above command creates a file named big_file.txt...