In this post, we will solve Cut #2 HackerRank Solution. This problem (Cut #2) is a part of Linux Shell series.
Task
Display the 2nd and 7th character from each line of text.
Input Format
A text file with N lines of ASCII text only.
Constraints
- 1 <= N <= 100
Output Format
The output should contain N lines. Each line should contain just two characters at the 2nd and the 7th position of the corresponding input line.
Sample Input
Hello
World
how are you
Sample Output
e
o
oe
Solution – Cut #2 – HackerRank Solution
#Display the 2nd and 7th character from each line of text. cut -c 2,7
Note: This problem (Cut #2) is generated by HackerRank but the solution is provided by CodingBroz. This tutorial is only for Educational and Learning purpose.