Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Re: Reg Expression Question

by blakem (Monsignor)
on Aug 31, 2001 at 14:01 UTC ( [id://109340]=note: print w/replies, xml ) Need Help??


in reply to Re: Reg Expression Question
in thread Reg Expression Question

Did you try the code you suggested above? For output I get:

2 3 4 5 20 23 34
It incorrectly matches on 2,3 and 4. Now if you had modified your regex to be:
$okvalues =~ m/\b$i\b/
You wouldn't have that problem, because the \b assertion is only true between a word char and a non wordchar. This stops '3' from matching on '34'. Though, its still not a good idea to do it this way.

-Blake

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-16 12:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found