Earlier quoted context omitted.
> these are going to be littered throughout most perl code > - its definitely in a lot of my code Interesting; I've been programming Perl for almost 20 years, and they're not in any of mine!
I read a lot of files of very raw textual data and if the parsed data tastes good, it gets stored in a DB for analysis, if not, kicked out as error. Its going to be fun watching people who do used the POSIX functions try alternatives. /[A-Za-z]/, I'd like you to meet umlat-u. The POSIX depended on the locale of the installed software which, assuming that's a feature and not a bug (usually its a bug) it'll be interest…
Alphabetical only? $value =~ /[[:alpha:]]/
Ascii only? $value =~ /[[:ascii:]]/
http://perldoc.perl.org/perlrecharclass.html#Bracketed-Chara...