ActionScript 3 使用RegExp验证电子邮件地址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 使用RegExp验证电子邮件地址相关的知识,希望对你有一定的参考价值。

public function checkEmailAddress(emailAddress:String):Boolean
{
    var address:String      = "([a-z0-9._-]+)";
    var domainName:String   = "([a-z0-9.-]+)";
    var domainExt:String    = "([a-z]{2,6})";
 
    var email:RegExp = new RegExp("^" + address + "@" + domainName + "\\." + domainExt + "$", "i");
 
    return email.test(emailAddress);
}

以上是关于ActionScript 3 使用RegExp验证电子邮件地址的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 使用RegExp验证卡号

ActionScript 3 使用RegExp验证日历日期

ActionScript 3 使用RegExp验证Web地址

ActionScript 3 使用RegExp验证电话号码

ActionScript 3 使用RegExp验证电子邮件地址

ActionScript 3 通过RegExp进行URL验证