Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: RegEx question

by crashtest (Curate)
on Feb 04, 2010 at 01:04 UTC ( [id://821294]=note: print w/replies, xml ) Need Help??


in reply to RegEx question

The pipe in the second block turned your regex into one that will match any string, including Joe Blow, Amelia Earhardt and Barack Obama. With the trailing pipe, your code now says: Match tom jones, or greg herman, or... whatever. So whatever matches.

The problem with the regex in the first block is that you're using the x modifier, something you appear to have forgotten when you wrote tom jones and greg herman. Note the space in between the first and last names - Perl is ignoring it. That regex will in fact match the string tomjones and gregherman. To make it work the way you want it to, you have to say tom\sjones | greg\sherman.

Hope this helps!

Replies are listed 'Best First'.
Re^2: RegEx question
by erabus (Sexton) on Feb 04, 2010 at 01:32 UTC
    Thank you.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-19 17:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found