说来惭愧,曾经形式语言学习时考了90多分,写程序时却连一个最基本的C#正则表达式提取也构造不出来。
下面是一个利用C#正则表达式提取网页URL中域名的函数:
- view plaincopy to clipboardprint?
- private string regexdom(string url)
- {
- string text = url;
- string pattern = @"(?<=http://)[\w\.]+[^/]"; //C#正则表达式提取匹配URL的模式,
- string s = "";
- MatchCollection mc = Regex.Matches(text, pattern);//满足pattern的匹配集合
- foreach (Match match in mc)
- {
- s = match.ToString();
- }
- return s;
- //textBox1.Text = s;
- }
【编辑推荐】