使用正则表达式vb从网址提取根域名

前端之家收集整理的这篇文章主要介绍了使用正则表达式vb从网址提取根域名前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Imports System.Text.RegularExpressions


Dim MatchVale As String = String.Empty

Dim myrule As New Regex("(^(\w*://)?(\w*\.)+(com.cn|com|net.cn|net|org.cn|org|gov.cn|gov|cn|mobi|me|info|name|biz|cc|tv|asia|hk|网络|公司|中国)).*$")

Dim m As Match = myrule.Match(url) MatchVale = m.Groups(1).ToString Return MatchVale

猜你在找的正则表达式相关文章