Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Modern Perl: The Book: The Draft

by hbm (Hermit)
on Sep 21, 2010 at 18:44 UTC ( [id://861131]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        # a poor regex
        my $hot_meal = qr/hot.*meal/;
    ...
        say 'Found a hot meal!' if 'I have a hot meal' =~ $hot_meal;
        say 'Found a hot meal!'
             if 'I did some one-shot, piecemeal work!' =~ $hot_meal;
    
  2. or download this
        my $minimal_greedy_match = qr/hot.*?meal/;
    
  3. or download this
        say 'Found a hot meal' if 'ilikeahotmeal' =~ /$minimal_greedy_matc
    +h/;
    
  4. or download this
        my $minimal_greedy_at_least_one = qr/hot.+?meal/;
    
        unlike( 'ilikeahotmeal', $minimal_greedy_at_least_one );
    
        like( 'i like a hot meal', $minimal_greedy_at_least_one );
    
  5. or download this
        my $seven_down = qr/\Al${letters_only}{2}m\Z/;
    
  6. or download this
        my $seven_down = qr/\bl${letters_only}{2}m\b/;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-09-14 10:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    The PerlMonks site front end has:





    Results (21 votes). Check out past polls.

    Notices?
    erzuuli‥ 🛈The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.