|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today! |
|
#1
|
|||
|
|||
|
Regex Not Validating Email Address
Why doesn't this string validate email address?
REGEX: [0-9a-zA-Z]+@[0-9a-zA-Z]+\.[0-9a-zA-Z]+ [0-9a-zA-Z] ------------- Any Valid Character + ------------------------- 1 or more Number of Times @------------------------- Ampersand [0-9a-zA-Z] ------------ Any Valid Characters . ------------------------- A dot [0-9a-zA-Z] ------------- Any Valid Charactes + -------------------------- 1 or more number of times I know this will not work for most emails, but why doesn't it work even for the common ones. it is intended to work for a structure like: URL it's not supposed to work with username@name@host.ext but it does> HELP!!! |
|
#2
|
|||
|
|||
|
Here is a PCRE exp
Code:
'/^[A-Za-z0-9\._-]+[@][A-Za-z0-9_-]+([.][A-Za-z0-9_-]+)+[A-Za-z]$/' This should validate pretty good...
__________________
~ Joe Penn We work for free to help make this a valuable resource on the internet. Do you appreciate the help - did we provide help that will help you prosper and help that has contributed to sharpening your current skill set? Show your appreciation and purchase something from our Amazon Wishlist's - it's simple and a great way to say thank you. |
![]() |
| Viewing: Dev Articles Community Forums > Programming > Programming Tools > Regex Not Validating Email Address |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|