欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET使用正则表达式屏蔽垃圾信息

程序员文章站 2022-11-23 18:10:04
regex 类 表示不可变的正则表达式。 命名空间:system.text.regularexpressions regex 类包含若干 static(在 visual b...
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);
}
}
}
}