in reply to Re: Re: Regular Exp parsing
in thread Regular Exp parsing
$string = "Fri Nov 8 15:00:02 2002:"; my ($a, $b, $c, $d, $e) = split(/ +/, $string);
Noting that the + allows for one or more spaces.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Regular Exp parsing
by hardburn (Abbot) on Dec 16, 2002 at 15:24 UTC |