C#正規表示式


正規表示式是匹配輸入文字的模式。.Net框架提供了允許這種匹配的正規表示式引擎。模式由一個或多個字元文字,運算子或構造組成。

定義正規表示式的構造

有各種型別的字元,運算子和結構,可以讓您用來定義正規表示式。點選以下連結查詢這些結構。

Regex類

正規表示式 - Regex 類用於表示正規表示式。 它有以下常用的方法:

序號 方法 描述
1 public bool IsMatch(string input) 指示在正規表示式建構函式中指定的正規表示式是否在指定的輸入字串中找到匹配項。
2 public bool IsMatch(string input, int startat) 指示在正規表示式建構函式中指定的正規表示式是否在指定的輸入字串(input)中找到匹配,從字串中指定的起始(startat)位置開始。
3 public static bool IsMatch(string input, string pattern) 在指定的正規表示式是否在指定的輸入字串中找到匹配項。
4 public MatchCollection Matches(string input) 搜尋所有出現正規表示式的指定輸入字串。
5 public string Replace(string input, string replacement) 在指定的輸入字串中,將與正規表示式模式匹配的所有字串替換為指定的替換字串(replacementreplacement)。
6 public string[] Split(string input) 將輸入字串拆分為由正規表示式建構函式中指定的正規表示式模式定義的位置的子字串陣列。

有關方法和屬性的完整列表,請閱讀Microsoft C# 文件。

範例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*
Splendid
Suns

範例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\b
make
maze
manage
measure

範例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