10位正整数,正则表达式
10位正整数,正则表达式
------解决方案--------------------
string pattern = @"^[1-9]\d{9}$";
------解决方案--------------------[1-9][0-9]{9}
------解决方案--------------------
string input="1000000000";
bool ismatch=Regex.IsMatch(input,@"^[1-9][0-9]{9}$");
------解决方案--------------------[1-9][0-9]{9}