Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Regular Expressions not matching

by ELISHEVA (Prior)
on Oct 01, 2009 at 10:34 UTC ( [id://798595]=note: print w/replies, xml ) Need Help??


in reply to Regular Expressions not matching

If your noddy (a.k.a. "play") script works and the real script does not, then your noddy script isn't doing the same thing as your real program. In software there is an ocean of difference between "isn't much different" and "isn't different". When it comes to failing to find bugs, most of the reasons are swimming in that ocean.

The usual strategy for tracking down a bug like this is to start with the real code and strip it down bit by bit until you have nothing but the bare essentials but can reproduce the problem. In the process, you may find the reason for your bug, which is great. If not, you will have a nice focused example that you can post here. Without code that reproduces the bug, the most anyone can give you is general observations about what sometimes trips some people up when they work with regular expressions. That probably won't be very useful to you.

As you strip down your code one thing you might want to pay special attention to is failing regexen in previously executed lines. If a regex fails the variables normally set by the regex will retain their previous values. They won't be set to undefined. That sometimes trips people up. From perlre:

NOTE: Failed matches in Perl do not reset the match variables, which makes it easier to write code that tests for a series of more specific cases and remembers the best match.

GrandFather has some excellent tips for stripping down your code in his post I know what I mean. Why don't you?.

Best, beth

Replies are listed 'Best First'.
Re^2: Regular Expressions not matching
by Mak3r (Novice) on Oct 01, 2009 at 10:44 UTC
    Indeed. However, your reply did jolt me into testing my code with an integration test (passing a UA string and request through a GET) rather than a pure unit test. That would allay my fears. Cheers.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-25 09:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found