C#中怎样验证输入的格式必须为英文字母或阿拉伯数字,要求用后台代码验证...
发布网友
发布时间:2024-09-30 16:19
我来回答
共1个回答
热心网友
时间:2024-10-11 15:46
string s = "你的字符串";
if(VerifySelfFormat(s))
{
//验证成功
}
else
{
//验证失败
}
bool VerifySelfFormat(string s)
{
bool isMatch=true;
foreach( char c in s)
{
if(!((c>'/ ' && c<': ' )||(c>'@ ' && c<'[ ' )||(c>'` ' && c<'{' )))
// !((0~9) || (A~Z) || (a~z))
{
isMatch=false;
break;
}
}
}
//以上都是直接在百度框里面手打的, 有小可能出现单词失误,
//你直接复制应该可以执行.