bishork
10-15-2008, 01:11 PM
need to make a regular expression that allows any character. How do I do that?
I want j$$$$j@j$$j.com to pass this one and basically allow any character between the first and last letter in the local and domain portion.
/^[a-z0-9]+???????[a-z0-9]+@[a-z0-9]+?????.([a-z]{2,})
Any help would be appreciated, thanks!
I want j$$$$j@j$$j.com to pass this one and basically allow any character between the first and last letter in the local and domain portion.
/^[a-z0-9]+???????[a-z0-9]+@[a-z0-9]+?????.([a-z]{2,})
Any help would be appreciated, thanks!