in reply to Regular Expression to Extract Anything from Colon Delimited String

Hi,

I'm not sure whether I misunderstood your question. But have you looked at function split for your purpose?

Regards
McA

  • Comment on Re: Regular Expression to Extract Anything from Colon Delimited String
  • Download Code

Replies are listed 'Best First'.
Re^2: Regular Expression to Extract Anything from Colon Delimited String
by GuiPerl (Acolyte) on Oct 01, 2014 at 19:35 UTC
    This did the trick:
    my ($a,$b,$c,$d,$e,$f,$g,$h,$i) =split(/:/,$line);
    Thanks.
      *Mapping $a, $b, $c, $d, $e, $f, $g, $h, $i to $count, $grade, $pos, $name, $date, $country, $age, $vacant is left as an exercise for the reader.