Toggle menu
868
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.



EmailAddress_isValid

Validate an email address. returns true if the email is valid, otherwise return false

Syntax

EmailAddress_isValid(email);

Arguments

email: Is a string expression which is an email address.

Return type

bool

Example

string email="binh@maysunshine.vn";
bool b  =EmailAddress_isValid(email);
print(b);