C# 使用正则表达式判断字符串是否由英文或数字组成

//正则判断帐号是否由字母和数字组成;
        System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(@"^[A-Za-z0-9]+$");
        if (!reg.IsMatch(accountStr))
        {
            SNKDebuger.Log("accountStr=" + accountStr + "is not valid");
            return;
        }

转自http://blog.csdn.net/huutu http://www.thisisgame.com.cn 星环游戏


转自:

http://blog.csdn.net/zhrtzc/article/details/6030216

转自http://blog.csdn.net/huutu http://www.thisisgame.com.cn 星环游戏

你可能感兴趣的:(正则表达式)