http://www.perlmonks.org?node_id=833146


in reply to Re^3: Hash of Regex
in thread Hash of Regex

For Perl => is just a comma, and empty lists () are ignored when flattening lists.

perl -e' @a=(1,2,(),(),3);print "@a"' 1 2 3

Cheers Rolf