C# 中使用正则表达式 Regex.Matches方法的几个应用[转]
用于正则表达式的 Regex.Matches静态方法的几种用法:
//①正则表达式 = > 匹配字符串
string Text = @"This is a book , this is my book , Is not IIS"; //定义一个模式字符串,不仅仅是纯文本,还可以是正则表达式
string Pattern = "is"; MatchCollection Matches = Regex.Matches(
Text,
Pattern,
RegexOptions.IgnoreCase | //忽略大小写
RegexOptions.ExplicitCapture | //提高检索效率
RegexOptions.RightToLeft //从左向右匹配字符串
); Console.WriteLine("从右向左匹配字符串:"); foreach (Match NextMatch in Matches)
{
Console.Write("匹配的位置:{0,2} ", NextMatch.Index);
Console.Write("匹配的内容:{0,2} ", NextMatch.Value);
Console.Write("/n");
} Console.WriteLine(); //②匹配以大写I开头
//“/b”是转义序列,代表开头和结尾(一个字的边界,忽略空白或标点)
Pattern = @"/bI";
Matches = Regex.Matches(
Text,
Pattern,
RegexOptions.ExplicitCapture //提高检索效率
); Console.WriteLine("从左向右匹配字符串:"); foreach (Match NextMatch in Matches)
{
Console.Write("匹配的位置:{0} ", NextMatch.Index);
Console.Write("匹配的内容:{0} ", NextMatch.Value);
Console.Write("/n");
} Console.WriteLine(); //③匹配以大写I开头,大写S结尾的字符串
//“/b”是转义序列,代表开头和结尾(一个字的边界,忽略空白或标点)
///S*匹配任何不是空白的字符
Pattern = @"/bI/S*S/b";
Matches = Regex.Matches(
Text,
Pattern,
RegexOptions.ExplicitCapture //提高检索效率
); Console.WriteLine("从左向右匹配字符串:"); foreach (Match NextMatch in Matches)
{
Console.Write("匹配的位置:{0} ", NextMatch.Index);
Console.Write("匹配的内容:{0} ", NextMatch.Value);
Console.Write("/n");
} Console.WriteLine(); //④匹配his 或者iis,其中忽略大小写
Pattern = @"[h|i]is";
Matches = Regex.Matches(
Text,
Pattern,
RegexOptions.IgnoreCase | //忽略大小写
RegexOptions.ExplicitCapture //提高检索效率
); Console.WriteLine("从左向右匹配字符串:"); foreach (Match NextMatch in Matches)
{
Console.Write("匹配的位置:{0} ", NextMatch.Index);
Console.Write("匹配的内容:{0} ", NextMatch.Value);
Console.Write("/n");
} Console.WriteLine(); //⑤对Url的分组匹配
Text = "http://192.168.0.1:2008";
Pattern = @"/b(/S+)://(/S+)(?::(/S+))/b";
Matches = Regex.Matches(Text, Pattern); Console.WriteLine("从左向右匹配字符串:"); foreach (Match NextMatch in Matches)
{
Console.Write("匹配的位置:{0} ", NextMatch.Index);
Console.Write("匹配的内容:{0} ", NextMatch.Value);
Console.Write("/n"); for (int i = ; i < NextMatch.Groups.Count; i++)
{
Console.Write("匹配的组 {0}:{1,4} ", i + , NextMatch.Groups[i].Value);
Console.Write("/n");
}
} Console.Read();
输出结果为:
①从右向左匹配字符串:
匹配的位置: 匹配的内容:IS
匹配的位置: 匹配的内容:Is
匹配的位置: 匹配的内容:is
匹配的位置: 匹配的内容:is
匹配的位置: 匹配的内容:is
匹配的位置: 匹配的内容:is ②从左向右匹配字符串:
匹配的位置: 匹配的内容:I
匹配的位置: 匹配的内容:I ③从左向右匹配字符串:
匹配的位置: 匹配的内容:IIS ④从左向右匹配字符串:
匹配的位置: 匹配的内容:his
匹配的位置: 匹配的内容:his
匹配的位置: 匹配的内容:IIS ⑤从左向右匹配字符串:
匹配的位置: 匹配的内容:http://192.168.0.1:2008
匹配的组 :http://192.168.0.1:2008
匹配的组 :http
匹配的组 :192.168.0.1
匹配的组 :
---上善若水,随遇而安。
老子
C# 中使用正则表达式 Regex.Matches方法的几个应用[转]的更多相关文章
- (译)JavaScript 中的正则表达式(RegEx)实操——快速掌握正则表达式,伴有随手可练的例子————(翻译未完待续)
(原文:https://blog.bitsrc.io/a-beginners-guide-to-regular-expressions-regex-in-javascript-9c58feb27eb4 ...
- Python中re(正则表达式)模块使用方法
Python中常用的正则表达式处理函数: re.match re.match 尝试从字符串的开始匹配一个模式,如:下面的例子匹配第一个单词. import re text = "JGood ...
- 在C#中使用正则表达式最简单的方式
更新记录 本文迁移自Panda666原博客,原发布时间:2021年5月11日. 在.NET中使用正则表达式与其他语言并无太大差异.最简单的使用就是使用Regex类型自带的静态方法. 注意:在.NET中 ...
- 正则表达式中Pattern类、Matcher类和matches()方法简析
1.简介: java.util.regex是一个用正则表达式所订制的模式来对字符串进行匹配工作的类库包. 它包括两个类:Pattern和Matcher . Pattern: 一个Pattern是一 ...
- .net正则表达式大全(.net 的 System.Text.RegularExpressions.Regex.Match()方法使用)
正则表达式的本质是使用一系列特殊字符模式,来表示某一类字符串.正则表达式无疑是处理文本最有力的工具,而.NET的System.dll类库提供的System.Text.RegularExpression ...
- Java中Pattern类的quote方法将任何字符串(包括正则表达式)都转换成字符串常量,不具有任何匹配功能
Java中Pattern类的quote方法将任何字符串(包括正则表达式)都转换成字符串常量,不具有任何匹配功能. 下面是个例子: import org.junit.Test; import java. ...
- ASP.NET开发中主要的字符验证方法-JS验证、正则表达式、验证控件、后台验证
ASP.NET开发中主要的字符验证方法-JS验证.正则表达式.验证控件.后台验证 2012年03月19日 星期一 下午 8:53 在ASP.NET开发中主要的验证方法收藏 <1>使用JS验 ...
- Java正则表达式之Matcher类的find和matches方法的区别
讨论整个问题之前,先看个例子: 从上面的例子可以看出 matches()是整个字符串完全匹配时,才会返回true 而find()则只需要字符串中,找到某部分的子字符串匹配则返回true ...
- 正则表达式中的exec和match方法的区别
正则表达式中的exec和match方法的区别 字符串的正则方法有:match().replace().search().split() 正则对象的方法有:exec().test() 1.match m ...
随机推荐
- 详解Intellij IDEA中.properties文件中文显示乱码问题的解决
首先,你可能会见到如下提示: File encoding is disabled because .properties file (see Settings|Editor|File Encoding ...
- HRNET网络结构简单分析
hrnet相关的两篇文章 CVPR2019 Deep High-Resolution Representation Learning for Human Pose Estimation High- ...
- Container 布局容器
Container 布局容器 用于布局的容器组件,方便快速搭建页面的基本结构: <el-container>:外层容器.当子元素中包含 <el-header> 或 <el ...
- centos出现磁盘坏道,怎么检索和修复
故障现象,在/var/log/message这个目录中出现下面的error: [ [ [ [ [ [ [ [ [ [ dmesg的输出结果也是上面的error. 1.检测下坏道,将结果保存在bb.lo ...
- C# 去除所有的html标签
/// <summary> /// 去除所有的html标签 /// </summary> /// <param name="strhtml">& ...
- Windows10 64位 安装 Postgresql 数据库
1,下载Postgresql 10.7 版本,下载地址 https://www.enterprisedb.com/downloads/postgres-postgresql-downloads 2 ...
- OpenStack Cinder发展动态系列--Austin峰会
在Mitaka版本,Cinder团队在多个特性和领域取得了重大进展. 本文将做一个简要的介绍:关于在Mitaka版本已经完成的功能和特性,以及讨论在Newton版本将会开发的功能和特性. 1 Cind ...
- windows10下idea快捷键文件
没详细测试. https://my.oschina.net/superwen/blog/833482 |快捷键|英文说明|说明|冲突 |---|---|--| |Ctrl + Shift + F||根 ...
- NLP之ROUGE[笔记]
0 前言 [定义]ROUGE:recall-oriented understanding for gisting evaluation,面向召回的要点评估理解 召回率,recall rate;要点,g ...
- unity 读取灰度图生成三维地形并贴图卫星影像
从 https://earthexplorer.usgs.gov/ 下载高程数据 从谷歌地球上保存对应地区卫星图像 从灰度图创建地形模型,并将卫星影像作为贴图 using System.Collect ...