发布网友 发布时间:2022-04-24 14:15
共3个回答
热心网友 时间:2022-04-27 04:09
//判断输入的是不是字母!
public static bool IsEnCh(string input)
{
string pattern = @"^[A-Za-z]+$";
Regex regex = new Regex(pattern);
return regex.IsMatch(input);
}
//判断是不是数字!
public static bool IsNum(string input)
{
string pattern = @"^[0-9]+$";
Regex regex = new Regex(pattern);
return regex.IsMatch(input);
}
其他类似 。。。。判断是不是汉字什么的 就是把中括号里的改下就行!
热心网友 时间:2022-04-27 05:27
验证是否含有^%&',;=?$/"等字符:"[^%&',;=?$/x22]+"。
热心网友 时间:2022-04-27 07:01
描述不清楚,什么叫“特殊字符串”
别人才有办法帮你