in reply to
Clearing Array Values
well, in my opinion, one would be better off using :
@myarray = ();
[download]
When you use
$#myarray = ()
[download]
you are referring to the number of elements in the array, not the array itself, since $#myarray gets the number of array elements present
Comment on
Re: Clearing Array Values
Select
or
Download
Code
In Section
Seekers of Perl Wisdom