Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^5: how to select which words have Y and W

by jethro (Monsignor)
on Dec 26, 2013 at 11:12 UTC ( [id://1068415]=note: print w/replies, xml ) Need Help??


in reply to Re^4: how to select which words have Y and W
in thread how to select which words have Y and W

You should take a look at perlretut where these symbols are explained in all detail. Here is a relevant snippet out of it:

Sometimes we would like our regexp to be able to match different possible words or character strings. This is accomplished by using the alternation metacharacter "|". To match "dog" or "cat", we form the regexp "dog|cat". As before, Perl will try to match the regexp at the earliest possible point in the string. At each character position, Perl will first try to match the first alternative, "dog". If "dog" doesn't match, Perl will then try the next alternative, "cat". If "cat" doesn't match either, then the match fails and Perl moves to the next position in the string. Some examples:

"cats and dogs" =~ /cat|dog|bird/; # matches "cat" "cats and dogs" =~ /dog|cat|bird/; # matches "cat"

See chapter "Using character classes" for an explanation of []

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-25 05:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found