Possible Duplicate:
PHP - regex to allow letters and numbers only
I need a RegEx that matches a-z, A-Z and 0-9 strings. Not á, à, ð, ð, ü, ĉ, etc.
How can I accomplish this?
Possible Duplicate:
PHP - regex to allow letters and numbers only
I need a RegEx that matches a-z, A-Z and 0-9 strings. Not á, à, ð, ð, ü, ĉ, etc.
How can I accomplish this?
 
    
     
    
    Try that one for example:
^[a-zA-Z0-9]*$
 
    
    Use a character class to match a single character:
[a-zA-Z0-9]
Apply quantifiers (*, +, whatever) as appropriate.
