Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Regex Modification

by AnomalousMonk (Archbishop)
on Apr 10, 2013 at 07:53 UTC ( [id://1027917]=note: print w/replies, xml ) Need Help??


in reply to Regex Modification

I like the approach of Athanasius, although I would throw in a couple of negative look-around assertions (as in the code of the OP) to eliminate a match against something like '9999-999-9999'.

$diff contains : -.

This statement in the OP is ambiguous and potentially a serious bug. If the assignment to  $diff were indeed
    my $diff = ' -.';
(one possible interpretation of the quoted statement), the '-' (hyphen) character would be treated as a range metacharacter in the  [\d$diff] (or  [\d -.] after interpolation) character class and the class would end up including all characters from ' ' (space, or \x20) through '.' (period) inclusive, i.e., [\d !"#$%&'()*+,-.] in the ultimate class, probably not what was intended.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (5)
As of 2024-04-25 09:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found