in reply to Re: Getting the text I want
in thread Getting the text I want

I would break each of your ping strings up via split'ing on newlines, as a starting point.
Isn't it easier in this case to use an array directly to get the output from the backticks? my @ping1 = `ping some.one.org`;

-- Hofmator