in reply to how to remove dumped data, dumped using &Dumper()
I don't quite get what your question is, but I'll guess that you're asking how to empty an array:
Or if you're in a loop you can just rely on redeclaration:@array = ();
while (1) { my @array; ... Dumper(\@array) }
|
|---|