Help for this page
sub has_alpha { my $string = shift; ... map { index($string , $_) == -1 ? () : 1 } ('a' .. 'z' , 'A' .. 'Z') ; }