in reply to Challenge - Creative Way To Detect Alpha Characters

I don't know if this will work for all cases, but I was trying to be creative.

foreach (@alpha = split //,$foo) { $_++; if (($_**2 == 0) && ($_ != 1) ){ print "$foo Contains Alpha Characters\n"; last; } }

Cameron