I have a txt file in which lots of information is given. I want to read and store just 'status' part.
Example:
id........username...... status......language .......image
11111 abcdefg Man Utd won for the second time ENG img1244
11112 abcdaaa Man Utd won for the third time ENG img1245
11113 abcdbbb Man Utd won for the fourth time ENG img1246
11114 abcdccc Man Utd won for the fifth time ENG img1247
11115 abcdddd Man Utd won for the sixth time ENG img1248
And what I should obtain is the following
Man Utd won for the second time
Man Utd won for the third time
Man Utd won for the fourth time
Man Utd won for the fifth time
Man Utd won for the sixth time
What I want to do is storing the string data from username to 'ENG' string.
Thanks for your help.