首页 > 编程 > Regex > 正文

[asp]匹配网址的正则表达式

2020-03-16 21:19:56
字体:
来源:转载
供稿:网友
代码如下:

Function IsValidUrl(str)  
 Dim regEx  
 Set regEx = New RegExp  
 regEx.Pattern = "http(s)?://([/w-]+/.)+[/w-]+(/[/w-./?%&=]*)?"  
 IsValidUrl = regEx.Test(str)  
End Function 
 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表