Filter and get text + cmd line

@Sairam_RPA,

Follow this approach.

  1. Split the string
linesArray = input_text.Split(New String() {Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)

Datatype of linesArray should be Array of String

  1. Split the second line and get status
strStatus = linesArray(1).Split(" "c)(0).Trim()
1 Like