‘Grep’ #2 HackerRank Solution

Hello Programmers, In this post, you will know how to solve the ‘Grep’ #2 HackerRank Solution. This problem is a part of the HackerRank Linux Shell Series.

‘Grep’ #2 HackerRank Solution
‘Grep’ #2 HackerRank Solutions

One more thing to add, don’t directly look for the solutions, first try to solve the problems of Hackerrank by yourself. If you find any difficulty after trying several times, then you can look for solutions.

‘Grep’ #2 HackerRank Solution

Objective

In this challenge, we practice using the grep command to find specified strings or regular expressions.

Task

You are given a text file that will be piped into your command through STDIN. Use grep to display all those lines that contain the word the in them.
The search should NOT be sensitive to case.
Display only those lines of the input file that contain the word ‘the‘.

Input Format

A text file will be piped into your command through STDIN.

Output Format

Output only those lines that contain the word ‘the‘. The search should NOT be case sensitive. The relative ordering of the lines in the output should be the same as it was in the input.

Sample Input

From fairest creatures we desire increase,
That thereby beauty’s rose might never die,
But as the riper should by time decease,
His tender heir might bear his memory:
But thou contracted to thine own bright eyes,
Feed’st thy light’s flame with self-substantial fuel,
Making a famine where abundance lies,
Thy self thy foe, to thy sweet self too cruel:
Thou that art now the world’s fresh ornament,
And only herald to the gaudy spring,
Within thine own bud buriest thy content,
And tender churl mak’st waste in niggarding:
Pity the world, or else this glutton be,
To eat the world’s due, by the grave and thee.
When forty winters shall besiege thy brow,
And dig deep trenches in thy beauty’s field,
Thy youth’s proud livery so gazed on now,
Will be a tattered weed of small worth held:
Then being asked, where all thy beauty lies,
Where all the treasure of thy lusty days;
To say within thine own deep sunken eyes,
Were an all-eating shame, and thriftless praise.
How much more praise deserved thy beauty’s use,
If thou couldst answer ‘This fair child of mine
Shall sum my count, and make my old excuse’

Sample Output

But as the riper should by time decease,
Thou that art now the world’s fresh ornament,
And only herald to the gaudy spring,
Pity the world, or else this glutton be,
To eat the world’s due, by the grave and thee.
Where all the treasure of thy lusty days;

Explanation

We have retained only those lines which contain the word ‘the. Do remember, that in this problem we’re trying to make a case insensitive search. This means that your command should also be able to capture ‘The‘, ‘thE‘ and so on. A little bit of extra care might be required to avoid retaining cases where ‘the‘ is a suffix or prefix of some other word within the sentences!

‘Grep’ #2 HackerRank Solution

# Output only those lines that contain the word 'the'. The search should NOT be case sensitive. The relative ordering of the lines in the output should be the same as it was in the input.
grep -iw "the"

Note: This problem (‘Grep’ #2) is generated by HackerRank but the Solution is Provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.

Next: Awk’ – 4 HackerRank Solution

Leave a Reply

Your email address will not be published. Required fields are marked *