Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Re:{4} Getting impossible things right (behaviour of keys)

by blakem (Monsignor)
on Oct 25, 2001 at 01:18 UTC ( [id://121276]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    ($txt = '123abc') =~ /(a|b|c)/;
    
    ...
                - check for c -> fail
    
    4. 123^abc  - check for a -> succeess, $1 becomes 'a'
    
  2. or download this
    ($txt = 'barefoot') =~ /(foo|foot)/;
    
    ...
                  - check for foot -> fail
    
    5. bare^foot  - check for foo  -> success, $1 becomes 'foo'
    
  3. or download this
    ($txt = 'arvec') =~ /(ar|ec|vec)$/
    
    ...
    3. ar^vec  - check for ar$  -> fail
               - check for ec$  -> fail
               - check for vec$ -> success, $1 becomes 'vec'
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (7)
As of 2024-03-28 17:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found