1. 程式人生 > >使用正則表示式驗證輸入數字

使用正則表示式驗證輸入數字

實現效果:

知識運用:

 

實現程式碼:

        private void button1_Click(object sender, EventArgs e)
        {
            if (IsValidate(textBox1.Text.ToString()))
                label1.Text = "輸入正確";
            else
                label1.Text = "請輸入數字";
        }
        public bool IsValidate(string str_number) {
            return System.Text.RegularExpressions.
                Regex.IsMatch(str_number,@"^[0-9]*$");
        }