Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: stuck on regexp

by moxliukas (Curate)
on Aug 25, 2002 at 11:02 UTC ( [id://192659]=note: print w/replies, xml ) Need Help??


in reply to stuck on regexp

Well, FreeBSD 'adduser' IIRC displays the regexp that the username must conform to, but I am not at my FreeBSD box now so I can't check that, however here is my stab at a regexp you might need:

/^[A-Za-z][-.A-Za-z0-9_]+$/

This will force the first character to be a-z or A-Z and any other character a-z, A-Z, 0-9, -, . or _. It will also force the login name to be at least 2 characters (I'm not sure if this is what you want) and reject a username made up entirely of numbers (as the first character must be a-z or A-Z)

Hope this helps.

Replies are listed 'Best First'.
Re: Re: stuck on regexp
by jimbobn (Novice) on Aug 25, 2002 at 11:06 UTC
    thanks, that sounds good. i'll give it a go
Re: Re: stuck on regexp
by jimbobn (Novice) on Aug 25, 2002 at 21:06 UTC
    cheers guys.
    how would i apply the maximum/minimum regexp to this expression:  if ($email !~ /.+\@.+\..+/) { ?

      Use  .{2,10} instead of  .+ (if I did understand your question)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-03-28 20:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found