/**//// <summary> /// 检查是否是数字 /// </summary> /// <param name="str"></param> /// <returns></returns> public bool RteNum(string str) ...{ if (str == "" || str == null) ...{ return false; } else ...{ System.Text.RegularExpressions.Regex reg1 = new System.Text.RegularExpressions.Regex(@"^[-]?d+[.]?d*$"); return reg1.IsMatch(str); } }