in reply to regex help

Since it looks like fixed-size data, I recommend looking at the example in perlpacktut, it does something very similar.
Perl 6 - links to (nearly) everything that is Perl 6.

Replies are listed 'Best First'.
Re^2: regex help
by desemondo (Hermit) on Sep 16, 2009 at 10:29 UTC
    This does look like fixed width data (its from a telnet or ssh right?)

    If it were me I'd also use a fixed width approach. Small suggestion however, add in a check that the last character of each 'field' that you extract must be space char. While this doesn't guarantee that you'll catch data from one field running into the next, it does increase your chances.