Regex 類
表示不可變的正則表達式。
命名空間:System.Text.RegularExpressions
Regex 類包含若干 static(在 Visual Basic 中為 Shared)方法,使您無需顯式創建 Regex 對象即可使用正
則表達式。在 .NET Framework 2.0 版中,將緩存通過調用靜態方法而編譯的正則表達式,而不會緩存通過調
用實例方法而編譯的正則表達式。默認情況下,正則表達式引擎將緩存 15 個最近使用的靜態正則表達式。因
此,在過度地依賴一組固定的正則表達式來提取、修改或驗證文本的應用程序中,您可能更願意調用這些靜態
方法,而不是其相應的實例方法。IsMatch、Match、Matches、Replace 和 Split 方法的靜態重載可用。
復制代碼 代碼如下:
using System;
using System.Text.RegularExpressions;
public class Test
{
public static void Main ()
{
// Define a regular expression for currency values.
Regex rx = new Regex(@"^-?\d+(\.\d{2})?$");
// Define some test strings.
string[] tests = {"-42", "19.99", "0.001", "100 USD",
".34", "0.34", "1,052.21"};
// Check each test string against the regular expression.
foreach (string test in tests)
{
if (rx.IsMatch(test))
{
Console.WriteLine("{0} is a currency value.", test);
}
else
{
Console.WriteLine("{0} is not a currency value.", test);
}
}
}
}