in reply to Re^6: regexp question
in thread regexp question

my $count = 0; for my $c (0x00 .. 0xFF) { my $_ = chr $c; $count++ unless /./; } say $count;
Feel free to adapt the range to the full Unicode set.