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;
In reply to RegEx question by erabus
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |