Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Simple regex question

by bart (Canon)
on Sep 29, 2012 at 09:05 UTC ( [id://996358]=note: print w/replies, xml ) Need Help??


in reply to Simple regex question

/^(?=.*[a-z])\w+$/i
(translation: all word characters, but at least a letter)

You don't say if you think underscores are acceptable...

/^(?=.*[a-z])(?!.*_)\w+$/i
(translation: All word characters, but at least a letter, an no underscore)

There.

Log In?
Username:
Password:

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

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

    No recent polls found