开发手册 欢迎您!
软件开发者资料库

C# - 正则表达式

C#正则表达式 - 从简单和简单的步骤学习C#,从基本到高级概念,包括概述,环境设置,程序结构,基本语法,数据类型,类型转换,变量,常量,运算符,决策,循环,方法, Nullables,Arrays,Strings,Struct,Enums,File I / O,Classes,Encapsulation,Interfaces,Inheritance,Namespaces,Polymophism,Operator Overloading,Encapsulation,Reflection,Attributes,Properties,Indexes,Delegates,Events,Collections,Generics,Anonymous Methods ,不安全代码,预处理器指令,多线程,正则表达式和异常处理。

正则表达式是一种可以与输入文本匹配的模式. .Net框架提供了允许这种匹配的正则表达式引擎.模式由一个或多个字符文字,运算符或构造组成.

用于定义正则表达式的构造

有各种类型的字符,运算符,以及允许您定义正则表达式的结构.单击以下链接以查找这些构造.

  • 字符转义

  • 字符类

  • 锚点

  • 分组构造

  • 量词

  • Ba ckreference构造

  • 轮换结构

  • 替代

  • 杂项构造

正则表达式类

正则表达式类用于表示正则表达式.它有以下常用方法 :

Sr.No.方法&说明
1

public bool IsMatch(string input)

指示Regex构造函数中指定的正则表达式是否在指定的输入字符串中找到匹配项.

2

public bool IsMatch(string input,int startat)

指示Regex构造函数中指定的正则表达式是否在指定的输入字符串中找到匹配项,从字符串中指定的起始位置开始.

3

public static bool IsMatch(string input, string pattern)

指示指定的正则表达式是否在指定的输入字符串中找到匹配项.

4

public MatchCollection Matches(string input)

搜索指定的输入字符串以查找所有发生的事件正则表达式的记录.

5

public string Replace(string input, string replacement)

在指定的输入字符串中,替换与正则表达式模式匹配的所有字符串指定的替换字符串.

6

public string[] Split(string input)

将输入字符串拆分为由子字符串数组定义的位置正则表达式在Regex构造函数中指定.

有关方法和属性的完整列表,请阅读有关C#的Microsoft文档.

示例1

以下示例匹配以'S'开头的单词 :

using System;using System.Text.RegularExpressions;namespace RegExApplication {   class Program {      private static void showMatch(string text, string expr) {         Console.WriteLine("The Expression: " + expr);         MatchCollection mc = Regex.Matches(text, expr);                  foreach (Match m in mc) {            Console.WriteLine(m);         }      }      static void Main(string[] args) {         string str = "A Thousand Splendid Suns";                  Console.WriteLine("Matching words that start with 'S': ");         showMatch(str, @"\bS\S*");         Console.ReadKey();      }   }}


编译并执行上述代码时,会产生以下结果 :

Matching words that start with 'S':The Expression: \bS\S*SplendidSuns


示例2

以下示例匹配以'm'开头并以'e结尾的单词' :

using System;using System.Text.RegularExpressions;namespace RegExApplication {   class Program {      private static void showMatch(string text, string expr) {         Console.WriteLine("The Expression: " + expr);         MatchCollection mc = Regex.Matches(text, expr);                  foreach (Match m in mc) {            Console.WriteLine(m);         }      }      static void Main(string[] args) {         string str = "make maze and manage to measure it";         Console.WriteLine("Matching words start with 'm' and ends with 'e':");         showMatch(str, @"\bm\S*e\b");         Console.ReadKey();      }   }}


编译并执行上述代码时,会产生以下结果 :

Matching words start with 'm' and ends with 'e':The Expression: \bm\S*e\bmakemazemanagemeasure


示例3

此示例替换额外的空格 :

using System;using System.Text.RegularExpressions;namespace RegExApplication {   class Program {      static void Main(string[] args) {         string input = "Hello   World   ";         string pattern = "\\s+";         string replacement = " ";                  Regex rgx = new Regex(pattern);         string result = rgx.Replace(input, replacement);         Console.WriteLine("Original String: {0}", input);         Console.WriteLine("Replacement String: {0}", result);             Console.ReadKey();      }   }}


编译并执行上述代码时,会产生以下结果 :

Original String: Hello World   Replacement String: Hello World