WEB开发网
开发学院WEB开发ASP ASP正则匹配URL的正确性 阅读

ASP正则匹配URL的正确性

 2009-05-06 10:40:11 来源:WEB开发网   
核心提示:Function iswww(strng) iswww = false Dim regEx, Match Set regEx = New RegExp regEx.Pattern = "^(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\
Function iswww(strng)  
   iswww = false  
   Dim regEx, Match  
   Set regEx = New RegExp  
   regEx.Pattern = "^(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?$" 
   regEx.IgnoreCase = True 
   Set Match = regEx.Execute(strng)  
   if match.count then iswww= true  
End Function

Tags:ASP 正则 匹配

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接