> Does anyone now if there is a way to find keys in a hash which are similar? > For example could I retrieve all the entries that start with the letter 'A'. > I suppose what I really want to do is retireve all the keys from a hash > which match certain search criteria.
Why not:
grep {/^A/ } keys %myhash;
Bob
_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activeperl
