in reply to Re: Extra Stuff
in thread Extra Stuff
foreach $rec (@CUSTDATA) { chomp $rec; @array = split(/,/,$rec); #count number of elements in array for error checking $num_of_elements = scalar @array; if($num_of_elements == '14'){ do whatever... @array[0]...@array[10]... } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Extra Stuff
by jynx (Priest) on Apr 17, 2001 at 03:52 UTC | |
|
Re (tilly) 3: Extra Stuff
by tilly (Archbishop) on Apr 17, 2001 at 04:01 UTC |