Regex regex = new Regex(@"^0|[0-9]*[1-9][0-9]*$");
if (regex.IsMatch(validate)){ return true;}else{ return false;}