Help for this page
# 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;
my $minimal_greedy_match = qr/hot.*?meal/;
say 'Found a hot meal' if 'ilikeahotmeal' =~ /$minimal_greedy_matc +h/;
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 );
my $seven_down = qr/\Al${letters_only}{2}m\Z/;
www.com | www.net | www.org
Too much JavaScript Not enough JavaScript Just the right amount of JavaScript Not enough WebPerl
Results (21 votes). Check out past polls.