c# 正则判断字符串是否数字

 Regex regExp = new Regex(" ^[0 - 9] * $");
 regExp.IsMatch(Character);

你可能感兴趣的:(C#)