in reply to Find what characters never appear
Just a chance this might work:
my %chars; @chars{0 .. 127}=undef; while(<>) { for (split //) { delete $chars{ord $_} ; } } print "Chars never seen:\n"; $,="\n"; print keys %chars;
You'd have to do some logic to filter out unprintables and to show the actual characters, rather than their decimal ASCII value
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Find what characters never appear
by Narveson (Chaplain) on Sep 04, 2009 at 22:08 UTC |