找资料看看如何实现使用正则表达式屏蔽垃圾信息找来找去找出来的都不怎么好有不详细的有代码缺失的最后还是找到了微软先摘过来大概思路已经有了只需把下面微软给的样例代码修改一下即可具体能不能行还不知道先睡一觉起来再慢慢研究
Regex类
表示不可变的正则表达式
命名空间SystemTextRegularExpressions Regex 类包含若干 static(在 Visual Basic 中为 Shared)方法使您无需显式创建 Regex 对象即可使用正则表达式在 NET Framework 版中将缓存通过调用静态方法而编译的正则表达式而不会缓存通过调用实例方法而编译的正则表达式默认情况下正则表达式引擎将缓存 个最近使用的静态正则表达式因此在过度地依赖一组固定的正则表达式来提取修改或验证文本的应用程序中您可能更愿意调用这些静态方法而不是其相应的实例方法IsMatchMatchMatchesReplace 和 Split 方法的静态重载可用
using System;
using SystemTextRegularExpressions;
public class Test
{
public static void Main ()
{
// Define a regular expression for currency values Regex rx = new Regex(@^?\d+(\\d{})?$);
// Define some test strings string[] tests = { USD };
// Check each test string against the regular expression
foreach (string test in tests)
{
if (rxIsMatch(test))
{
ConsoleWriteLine({} is a currency value test);
}
else
{
ConsoleWriteLine({} is not a currency value test);
}
}
}
}
本文出自 尼克技术博客 博客