erabus has asked for the wisdom of the Perl Monks concerning the following question:
The first block does not match but the second block does. The difference is that the second block has the pipe character after “greg herman”. It wasn’t obvious to me why the last match string needed a pipe before the closing parenthesis. Any ideas?
Thanks. -Tony#!/usr/bin/perl -w require 5.010_000; use strict; use warnings; use feature ':5.10'; my $name='tom jones'; { my $gender; given ( $name ) { when ( /^ ( tom jones| greg herman ) /xms ) { $gender='male'; } } say 'gender='.( $gender//'undef' ); } { my $gender; given ( $name ) { when ( /^ ( tom jones| greg herman| ) /xms ) { $gender='male'; } } say 'gender='.( $gender//'undef' ); } exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: RegEx question
by crashtest (Curate) on Feb 04, 2010 at 01:04 UTC | |
by erabus (Sexton) on Feb 04, 2010 at 01:32 UTC |