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

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.
Problem
Given a sentence, identify and display its fourth word. Assume that the space (‘ ‘) is the only delimiter between words.
Input Format
A text file with lines of ASCII text only. Each line has exactly one sentence.
Constraints
- 1 <= N <= 100
- (N is the number of lines of text in the input file)
Output Format
The output should contain N lines.
For each input sentence, identify and display its fourth word. Assume that the space (‘ ‘) is the only delimiter between words.
Sample Input
Hello
World
how are you
Sample Output
Hello
World
Cut #7 HackerRank Solutions
# For each input sentence, identify and display its fourth word. Assume that the space (' ') is the only delimiter between words. cut -d " " -f 4
Note: This problem (Cut #7) is generated by HackerRank but the Solution is Provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.
Next: Cut #8 HackerRank Solution