![]() |
|
There's more than one way to do things | |
PerlMonks |
Re: Parsing in perlby arc_of_descent (Hermit) |
on Jun 09, 2009 at 15:36 UTC ( #769964=note: print w/replies, xml ) | Need Help?? |
Yor are declaring $le_data which you don't need. You already have the lines in the @le_data array. In Perl, you access an array element using $array_name. Just remove the
line. And in the if condition, you need to do $le_data[5] -- Rohan
In Section
Seekers of Perl Wisdom
|
|