ASP.NET使用Regex屏蔽垃圾資訊

來源:互聯網
上載者:User

Regex 類
表示不可變的Regex。
命名空間:System.Text.RegularExpressions
Regex 類包含若干 static(在 Visual Basic 中為 Shared)方法,使您無需顯式建立 Regex 對象即可使用正
則運算式。在 .NET Framework 2.0 版中,將緩衝通過調用靜態方法而編譯的Regex,而不會緩衝通過調
用執行個體方法而編譯的Regex。預設情況下,Regex引擎將緩衝 15 個最近使用的靜態Regex。因
此,在過度地依賴一組固定的Regex來提取、修改或驗證文本的應用程式中,您可能更願意調用這些靜態
方法,而不是其相應的執行個體方法。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);
}
}
}
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.