程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#驗證輸入的是否數字的幾種方法

C#驗證輸入的是否數字的幾種方法

編輯:關於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); 
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved