I'm trying to build a Regular Expression used with PHP to edit a form field containing an Email Address. I need the field to include a @ and a . otherwise it is an invaild value. The Regular Expressions I have experimented with use an 'or' operator but this must be an 'and' operator. The text must include a @ and . The Regular Expression [@.] is true if the text includes @ or .
Any suggestions?







Bookmarks