Beefy Boxes and Bandwidth Generously Provided by pair Networks Ovid
more useful options
 
PerlMonks  

Re: Challenge - Creative Way To Detect Alpha Characters

by premchai21 (Curate)
on Sep 15, 2004 at 19:13 UTC ( [id://391322]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Challenge - Creative Way To Detect Alpha Characters

Highly ASCII-specific, and inefficient, but perhaps mildly interesting. Appears to work, though no absolute guarantees are made of course. Using tr/// is kind of a wart, though, hmm.

sub contains_alpha { use bytes; my ($string) = @_; my $len = length($string .= ""); my @b = map{$string & (chr(1<<$_) x $len)} (0..7); tr/\x01-\xff/\x01/ for @b; my $result = (~$b[7]) & ($b[6]) & (($b[4] & ~($b[3] & (($b[1] & $b[0]) | $b[2]))) | ((~$b[4]) & ($b[3] | $b[2] | $b[1] | $b[0]))) ; $result =~ tr/\x00//d; length($result); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://391322]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.