实现效果:

使用正则表达式验证两位小数_代码实现

知识运用:

使用正则表达式验证两位小数_代码实现_02

 

代码实现:

        private void button1_Click(object sender, EventArgs e)
        {
            if (IsValidate(textBox1.Text.ToString()))
                MessageBox.Show("验证通过","提示:");
            else
                MessageBox.Show("验证失败", "提示:");
        }
        //方法定义
        public bool IsValidate(string str_decimal) {
            return System.Text.RegularExpressions.
                Regex.IsMatch(str_decimal,@"^[0-9]+\.[0-9]{2}$");
        }