欢迎来到入门教程网!

C#教程

当前位置:主页 > 软件编程 > C#教程 >

轻松学习C#的正则表达式

来源:本站原创|时间:2020-01-10|栏目:C#教程|点击:

      在编写处理字符串的程序时,经常会有查找符合某些复杂规则的字符串的需要。正则表达式就是用于描述这些规则的工具。正则表达式拥有一套自己的语法规则,常见语法包括字符匹配,重复匹配,字符定位,转义匹配和其他高级语法(字符分组,字符替换和字符决策),使用正则表达式时,首先构造正则表达式,这就用到了Regex类。其构造方式有两种:
        基本形式Regex(正则表达式)
        基本形式Regex(正则表达式,匹配选项)
其中匹配选项是提供一些特殊的帮助,是一个枚举值,包括下面六个值:

  •         (1)IgnoreCase(忽略大小写)
  •         (2)ReghtToLeft(从左向右)
  •         (3)None(默认)
  •         (4)CultureInvariant(忽略区域)
  •         (5)Multline(多行模式)
  •         (6)SingleLine(单行模式)

一、正则表达式的匹配
        正则表达式的匹配是通过Regex类的IsMatch方法实现的,IsMatch方法的使用格式为:
        Regex.IsMatch(要判断的字符串,正则表达式)
例一:利用IsMatch方法判断是否符合当地的电话号码的程序

<span style="font-size:18px;">using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Text.RegularExpressions;//引入命名空间 
using System.Threading.Tasks; 
 
namespace 正则表达式 
{ 
 class Program 
 { 
 static void Main(string[] args) 
 { 
 string str = @"(0530|0530-)\d{7,8}";//定义的正则表达式符合条件为“0530”或 
 Console.WriteLine("请输入一个电话号码");//“0530-”开头,后面跟7位或8位数字 
 string tel = Console.ReadLine(); 
 bool b; 
 b = Regex.IsMatch(tel,str);//判断是否符合正则表达式 
 if (b) 
 { 
 Console.WriteLine("{0}是某地的电话号码",tel); 
 } 
 else 
 { 
 Console.WriteLine("{0}不是某地的电话号码",tel); 
 } 
 Console.ReadLine(); 
 } 
 } 
}</span> 

输入:0530-12345678
输出的结果为:0530-12345678是某地的电话号码
二、正则表达式的替换
        要通过正则表达式替换字符串中的匹配项,就要通过Regex类中的Replace方法。通常用的一种格式为:
        Regex.Replace(要搜索匹配项的字符串,要替换的原字符串,替换后的字符串)
例二:利用Replace方法将用户输入的电子邮件中的“@”替换为“AT”的程序

<span style="font-size:18px;">using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Text.RegularExpressions; 
using System.Threading.Tasks; 
 
namespace ConsoleApplication2 
{ 
 class Program 
 { 
 static void Main(string[] args) 
 { 
 string str = @"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*";//定义的电子邮件地址的正则表达式 
 Console.WriteLine("请输入一个正确的Internet电子邮件地址"); 
 string email = Console.ReadLine(); 
 bool b; 
 b = Regex.IsMatch(email, str);//判断是否符合正则表达式 
 if (b) 
 { 
 string outstr = ""; 
 outstr = Regex.Replace(email, "@", "AT");//进行替换 
 Console.WriteLine("替换后为:{0}", outstr); 
 } 
 else 
 { 
 Console.WriteLine("你所输入的字符串中不包括Internet URL"); 
 } 
 Console.ReadLine(); 
 } 
 } 
}</span> 

输入:123456@126.com
输出的结果为:123456AT126.com
三、正则表达式的拆分
           要通过正则表达式拆分字符串,就要通过Regex类的Split方法,格式为:
           Regex.Split(要拆分的字符串,要匹配的正则表达式模式)
例三:通过Split方法进行输入的字符串的拆分

<span style="font-size:18px;">using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Text.RegularExpressions; 
using System.Threading.Tasks; 
 
namespace ConsoleApplication2 
{ 
 class Program 
 { 
 static void Main(string[] args) 
 { 
 string str = ";";//定义的正则表达式 
 Console.WriteLine("请输入多个用户姓名,以分号隔开"); 
 string names = Console.ReadLine(); 
 string[] name; 
 name = Regex.Split(names,str); 
 Console.WriteLine("分隔后的姓名为:"); 
 foreach (string item in name) 
 { 
 Console.WriteLine(item); 
 } 
 Console.ReadLine(); 
 } 
 } 
}</span> 

输入:张三;李四;王五
输出的结果为:张三
                       李四
                       王五

以上就是C#的正则表达式,希望对大家的学习有所帮助。

上一篇:C#实现Winform鼠标拖动窗口大小时设定窗口最小尺寸的方法

栏    目:C#教程

下一篇:C#实现托盘程序并禁止多个应用实例运行的方法

本文标题:轻松学习C#的正则表达式

本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6823.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有