using System;
using System.Text.RegularExpressions;
namespace test_yanzhengzifu
{
/// <summary>
/// yanzheng 的摘要說明。
/// </summary>
public class yanzheng
{
/// <summary>
/// 嚴整特殊字符
/// </summary>
public static bool checkString(string source)
{
Regex regExp=new Regex("[~!@#$%^&*()=+[\\]{}''\";:/?.,><`|!·¥…—()\\-、;:。,》《]");
return !regExp.IsMatch(source);
}
}
}