Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Pattern Matching Query

by Elgon (Curate)
on Sep 17, 2002 at 12:31 UTC ( [id://198468]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # Now for unsuited straights (not too difficult...
        if (    $sorted_values eq 'abcde'
             or $sorted_values eq 'bcdef'
    ...
        {
          # do stuff...
        }
    
  2. or download this
    if ($sorted_values =~ m/INSERT_PATTERN_HERE/)
    {
      # Do stuff...
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://198468]
Approved by moxliukas
Front-paged by derby
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-25 15:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found