2009年3月16日 星期一

C# 檢查是否為數字 或 字串

 可以用在 Textbox 上來檢查 使用者 輸入的時候 是  純文字  或  純數字


   public bool CheckIsNumber(string s)
        {
            char[] tmp = s.ToCharArray();
            for (int i = 0; i < tmp.Length; i++)
            {
                if ((int)tmp[i] < 48 || (int)tmp[i] > 57)
                    return false;

            }
            return true;
        }


                 實做:

                   if (CheckIsNumber(textBox2.Text) == true)
                  
                       {
                            MessageBox.Show("你輸入的是 純數字");


                        }
                        else
                        {
                            MessageBox.Show("請輸入 數字!!");
                       
                        }

沒有留言:

張貼留言