1 //只允许输入正整数 2 public bool RegexValue(string valuing) 3 { 4 Regex value = new Regex(@"^[1-9]{1}[0-9]{0,}$"); 5 return value.IsMatch(valuing); 6 }