Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^3: Need a regex..

by Neighbour (Friar)
on May 21, 2012 at 14:40 UTC ( [id://971634]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Need a regex..
in thread Need a regex..

Edit: Lost the race to Re: Need a regex.., which is also slightly better :)
Try a more grouped approach:
/^([+]|[-])?[0-9]{0,3}(\.[0-9]{1,3})?$/
First the start of the line: ^
then an optional + or - sign, with the + enclosed in [] to avoid interpretation: ([+]|-)?
then 0-3 digits: [0-9]{0,3}
then an optional group of a period followed by 1-3 digits, with the period escaped in another way to avoid interpretation: (\.[0-9]{1,3})?
and finally the end of the line: $

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-24 21:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found