Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Challenge - Creative Way To Detect Alpha Characters

by doowah2004 (Monk)
on Sep 14, 2004 at 14:58 UTC ( [id://390860]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    while ($_ = substr($foo,$i++,1)){
        if (++$_**2 == 0) {
    ...
            last;
        } 
    }
    
  2. or download this
    my $i = 0;
    while (local $_ = substr($foo,$i++,1)){
    ...
            last;
        } 
    }
    
  3. or download this
    while (++substr($foo,$i++,1) != 0){}
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://390860]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (10)
As of 2024-04-18 09:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found