Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: regex start of word (\<)

by biohisham (Priest)
on Feb 01, 2011 at 13:39 UTC ( [id://885490]=note: print w/replies, xml ) Need Help??


in reply to regex start of word (\<)

Your string looks like " cat mat rat pat\n", you wanna match the word 'cat' and not 'cater' or 'cats' or 'Catrina' for example, so your regex has to account for matching the word cat bounded by spaces or non word characters.. So you have many likely regex constructions to pick from (not including the look-ahead or look-behind assertions or the backtracking or the backreferences):
$string =~ /\bcat\b/ $string =~ /\Wcat\W/ $string =~ /\scat\s/
If you don't mind the letter-case of the word then you can use the i switch as in <c>m/\bcat\b/i<c>, read perlretut for a tutorial on regular expressions..

Update: another interesting read is 7 Stages of Regex Users...


Excellence is an Endeavor of Persistence. A Year-Old Monk :D .

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-23 22:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found