Google said:Your search - "visual basic check for valid email" - did not match any documents.
I did this recently in one PHP code I had to do. There are a lot of allowed characters in the address before @ and in the domain after it, it's just that too many e-mail applications aren't designed to handle "international" characters.MrGaribaldi said:the easiest way would be to run through the text string character by character, and check if there is an '@' in there, and that somewhere after it, there is a ',' followed by 2 to 4 characters.
That will be a better way than most programmes does it, as they usually accept "[email protected]" or similar adresses.
MrGaribaldi said:Your search - "visual basic check for valid email" - did not match any documents.