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


in reply to Is there an isArray() in Perl?

Alternatively, you can use universal.pm
use UNIVERSAL 'isa'; foreach $item (@array) { if (isa($item, 'ARRAY')) { print "We've got an array!!\n"; } }