i receives this table from my process output into List<string>:

List<string> list = new List<string>();
StreamReader reader = tsharkProcess.StandardOutput;
while (!reader.EndOfStream)
{
string read = reader.ReadLine();
list.Add(read);
}
what would be the best way to parse this table to show only the ip address, the value and the parentage ?
This will read the ipAddress, value and percentage on the fly if the rows are tab-delimited
If not then it could be done using RegEx.
And the hard core RegEx solution.
For the Regex solution you should use: