程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> C# 的Regex類用法之匹配和替換

C# 的Regex類用法之匹配和替換

編輯:C#基礎知識
C# Regex類用法

使用Regex類需要引用命名空間:using System.Text.RegularExpressions;

利用Regex類實現驗證

示例1:注釋的代碼所起的作用是相同的,不過一個是靜態方法,一個是實例方法

var source = "劉備關羽張飛孫權";
//Regex regex = new Regex("孫權");
//if (regex.IsMatch(source))
//{
// Console.WriteLine("字符串中包含有敏感詞:孫權!");
//}
if (Regex.IsMatch(source, "孫權"))
{
  Console.WriteLine("字符串中包含有敏感詞:孫權!");
}
Console.ReadLine();

示例2:使用帶兩個參數的構造函數,第二個參數指示忽略大小寫,很常用

var source = "123abc345DEf";
Regex regex = new Regex("def",RegexOptions.IgnoreCase);
if (regex.IsMatch(source))
{
  Console.WriteLine("字符串中包含有敏感詞:def!");
}
Console.ReadLine();

 

使用Regex類進行替換

示例1:簡單情況

var source = "123abc456ABC789";
// 靜態方法
//var newSource=Regex.Replace(source,"abc","|",RegexOptions.IgnoreCase);
// 實例方法
Regex regex = new Regex("abc", RegexOptions.IgnoreCase);
var newSource = regex.Replace(source, "|");
Console.WriteLine("原字符串:"+source);
Console.WriteLine("替換後的字符串:" + newSource);
Console.ReadLine();

結果:

原字符串:123abc456ABC789

替換後的字符串:123|456|789

 

示例2:將匹配到的選項替換為html代碼,我們使用了MatchEvaluator委托

var source = "123abc456ABCD789";
Regex regex = new Regex("[A-Z]{3}", RegexOptions.IgnoreCase);
var newSource = regex.Replace(source,new MatchEvaluator(OutPutMatch));
Console.WriteLine("原字符串:"+source);
Console.WriteLine("替換後的字符串:" + newSource);
Console.ReadLine();

 

private static string OutPutMatch(Match match)
{
  return "<b>" +match.Value+ "</b>";
}

輸出:

原字符串:123abc456ABCD789

替換後的字符串:123<b>abc</b>456<b>ABC</b>D789

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved