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.
Revision as of 09:53, 26 October 2016 by Tranvuthaibinh (talk | contribs) (Created page with "Category:Email_and_SMS_Functions {{HelpFiles}} ==== EmailAddress_isValid==== Validate an email address. returns true if the email is valid, otherwise return false '''S...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



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);