分享

C#验证输入的是否是数字的几种方法

 高高 2007-05-11
C#验证输入的是否数字的几种方法
方法一:

static bool IsNumeric(string str)
  {
  if (str==null || str.Length==0)
    return false;
  foreach(char c in str)
  {
    if (!Char.IsNumber(c))
    {
    return false;
    }
  }
  return true;
  }

    方法二:

private bool IsNumeric(string s)

private bool IsNumeric(string s)

        {

              char ch0 = ‘0‘;

              char ch9 = ‘9‘;

              for(int i=0; i < s.Length; i++)

              {

                  if ((s[i] < ch0 || s[i] > ch9))

                  {

                        this.lblwarning.Text="此处应输入整数且非负!";

                        return false;

                  }

              }

              return true;

        }

    方法三:

static bool IsNumeric (string str)

  System.Text.RegularExpressions.Regex reg1 
      = new System.Text.RegularExpressions.Regex(@"^[-]?\d+[.]?\d*$"); 
  return reg1.IsMatch(str);
}

    方法四:(可扩展)

public static bool IsConvert(string Expression,Type DataType)

{

  switch(DataType.Name)

  {

      case "Double":

              try

              {

                    Double.Parse(Expression);

                    return true;

              }

              catch

              {

                    return false;

              }

      case "DateTime":

              try

              {

                    DateTime.Parse(Expression);

                    return true;

              }

              catch

              {

                    return false;

              }

      default:

              return true;

  }

}

    C#验证输入的是否数字的方法

其实用正则表达式也可以
static bool IsNumeric(string str)
  {
  if (str==null || str.Length==0)
    return false;
  foreach(char c in str)
  {
    if (!Char.IsNumber(c))
    {
    return false;
    }
  }
  return true;
  }

正则表达的写法是:


static bool IsNumeric(string str) 

  System.Text.RegularExpressions.Regex reg1 
      = new System.Text.RegularExpressions.Regex(@"^[-]?\d+[.]?\d*$"); 
  return reg1.IsMatch(str); 
}

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约