Beefy Boxes and Bandwidth Generously Provided by pair Networks Cowboy Neal with Hat
P is for Practical
 
PerlMonks  

Re: Regular Expression from Hell

by perlmonkey (Hermit)
on Apr 15, 2004 at 11:34 UTC ( [id://345417]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Regular Expression from Hell

I think what you are looking for is:
if( $test =~ /^\d{4}$/ ) { ... }
This will match:
'^': anchor start of string
\d{4}: exactly 4 digits
$: anchor end of string

if you know it is always going to be digits, then length would probably be eaiser:
if( length($test) == 4 ) { ... }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://345417]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.