Follow this approach.
Split the string
linesArray = input_text.Split(New String() {Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)
Datatype of linesArray should be Array of String
- Split the second line and get status
strStatus = linesArray(1).Split(" "c)(0).Trim()