in reply to Challenge - Creative Way To Detect Alpha Characters

Admittedly not very efficient:

grep { 0 <= index $str, $_ } a..z, A..Z

I like your lc/uc solution the most. Rather creative.