Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Perl will not match my RegEx pattern....

by hazylife (Monk)
on Mar 19, 2014 at 14:44 UTC ( [id://1078946]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl will not match my RegEx pattern....
in thread Perl will not match my RegEx pattern....

$ perl -nle 'print "$_ is ", /^[A-Z][1-9]\.\d\d?[A-Z]*$/ ? "valid" : " +invalid"' 1078942.in A1.01A is valid A1.01B is valid A1.01B is valid A2.06AA is valid A2.06AABB is valid A2.06B is valid H2.25 is valid H3.10 is valid Imaging Center is invalid Italy is invalid K1.03A is valid K1.03B is valid R1.19G is valid R2.25AA is valid R2.25AABB is valid R2.25BB is valid R2.25D is valid R2.25DD is valid R2.25F is valid R2.25FF is valid V3.26P is valid V3.26Q is valid V3.26QR is valid V3.26R is valid V3.26R is valid V3.26S is valid V3.26ST is valid V3.26T is valid
EDIT: to weed out .0 and .00, use this pattern instead: /^[A-Z][1-9]\.(?:[1-9]\d?|0[1-9])[A-Z]*$/

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1078946]
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: (3)
As of 2024-04-19 23:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found