ActionScript 3 使用RegExp验证Web地址

Posted

tags:

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

public function checkWebAddress(address:String):Boolean
{
    var protocol:String     = "(https?:\/\/|ftp:\/\/)?";
    var domainName:String   = "([a-z0-9.-]{2,})";
    var domainExt:String    = "([a-z]{2,6})";
    var web:RegExp          = new RegExp('^' + protocol + '?' + domainName + "\." + domainExt + '$', "i");
 
    return web.test(address);
}

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

ActionScript 3 使用RegExp验证卡号

ActionScript 3 使用RegExp验证日历日期

ActionScript 3 使用RegExp验证Web地址

ActionScript 3 使用RegExp验证电话号码

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

ActionScript 3 通过RegExp进行URL验证