Cut #2 HackerRank Solution

Hello coders, In this post, you will learn how to solve the Cut #2 HackerRank Solution. This problem is a part of the Linux Shell series.

Cut #2 HackerRank Solution
Cut #2 HackerRank Solution

Problem

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

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 chase2learn. This tutorial is only for Learning and Educational purpose.

Sharing Is Caring