http://qs321.pair.com?node_id=71450


in reply to How do I reset an array?

Depends what you mean by reset. To clear it:
@array = ();
To restore to its old value:
@save = @array; for (@array) { # Loop stuff } @array = @save;