91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中怎么利用正則表達式匹配相關字符串

發布時間:2021-07-07 16:31:38 來源:億速云 閱讀:227 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關C#中怎么利用正則表達式匹配相關字符串,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1.使用C#中使用正則表達式System.Text.RegularExpressions命名空間;

2.使用C#中使用正則表達式Matches()方法匹配字符串,格式如下:
MatchCollection Matches = Regex.Matches(Str, Pattern, RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture);

其中Str表示輸入字符串,Pattern表示匹配模式,RegexOptions.IgnoreCase表示忽略大小寫,RegexOptions.ExplicitCapture表示改變收集匹配方式。

3.匹配結果保存在MatchCollection集合中,可以通過循環遍歷結果集取出Match對象的結果。
TestRagular.cs:

using System;  using System.Text.RegularExpressions;   namespace Magci.Test.Strings  {      public class TestRegular      {          public static void WriteMatches(string str, MatchCollection matches)          {              Console.WriteLine("\nString is : " + str);              Console.WriteLine("No. of matches : " + matches.Count);              foreach (Match nextMatch in matches)              {                  //取出匹配字符串和最多10個外圍字符                  int Index = nextMatch.Index;                  string result = nextMatch.ToString();                  int charsBefore = (Index < 5) ? Index : 5;                  int fromEnd = str.Length - Index - result.Length;                  int charsAfter = (fromEnd < 5) ? fromEnd : 5;                  int charsToDisplay = charsBefore + result.Length + charsAfter;                   Console.WriteLine("Index: {0},\tString: {1},\t{2}", Index, result, str.Substring(Index - charsBefore, charsToDisplay));              }          }           public static void Main()          {              string Str = @"My name is Magci, for short mgc. I like c sharp!";               //查找“gc”              string Pattern = "gc";              MatchCollection Matches = Regex.Matches(Str, Pattern, RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture);               WriteMatches(Str, Matches);                            //查找以“m”開頭,“c”結尾的單詞              Pattern = @"\bm\S*c\b";              Matches = Regex.Matches(Str, Pattern, RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture);               WriteMatches(Str, Matches);          }      }  }

看完上述內容,你們對C#中怎么利用正則表達式匹配相關字符串有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江山市| 桃园市| 玉环县| 溆浦县| 井研县| 汾阳市| 阿勒泰市| 万宁市| 张北县| 呈贡县| 兴国县| 鄂温| 阿拉善盟| 长寿区| 边坝县| 南郑县| 常州市| 淮阳县| 夹江县| 九龙坡区| 察雅县| 绥江县| 浦北县| 岳池县| 诏安县| 新巴尔虎左旗| 台山市| 当涂县| 彰武县| 都匀市| 海阳市| 南投市| 沂水县| 长治县| 凤山县| 通榆县| 广丰县| 吴川市| 织金县| 宁安市| 孝感市|