bool IsEmail (string inEmail)
Description
Returns true if the string is a legal E-mail address and false otherwise
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inEmail | string | The string that is being checked |
Return Type
bool
Return Type
For the string "abcasd.com" the following code will return false and for the string "abcd@dooblo.com" the following code will return true
Comments
Please sign in to leave a comment.