博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 正则域名
阅读量:4946 次
发布时间:2019-06-11

本文共 900 字,大约阅读时间需要 3 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Text.RegularExpressions;namespace rexurl{    class Program    {        static void Main(string[] args)        {            string regex = @"(?i)http://(\w+\.){2,3}(com(\.cn)?|cn|net)\b";            string content = "http://www.17meiman.com/u/20090313/15/5ad5d3f2-094f-4b01-9c91-a6d4052a8255.html";            Regex re1 = new Regex(regex);            MatchCollection matches = re1.Matches(content);            System.Collections.IEnumerator enu = matches.GetEnumerator();            while (enu.MoveNext() && enu.Current != null)            {                Match match = (Match)(enu.Current);                string str = match.Value;                Console.Write(str);            }            Console.Read();        }    }}

转载于:https://www.cnblogs.com/canlay/archive/2011/09/06/2169328.html

你可能感兴趣的文章
Quartz Core之CALayer
查看>>
java:一个项目的开发过程(转)
查看>>
操作系统下载路径
查看>>
网站开发 关于图片压缩 以及图片使用
查看>>
hive的count(distinct id)测试--慎用
查看>>
第九周周总结
查看>>
Logistic Regression
查看>>
8lession-基础类型转化
查看>>
FlashCS5作成SWC,在Flex4中使用(1)
查看>>
vue-cli目录结构及说明
查看>>
JS 数据类型转换
查看>>
WeQuant交易策略—RSI
查看>>
osgearth将视点绑定到一个节点上
查看>>
PHP 当前时间秒数+数值,然后再转换成时间。
查看>>
数据交互 axios 的使用
查看>>
bootloader,kernel,initrc
查看>>
Java中jshell脚本
查看>>
performSelector的方法
查看>>
redis
查看>>
BZOJ1645 [Usaco2007 Open]City Horizon 城市地平线
查看>>