码迷,mamicode.com
首页 > 其他好文 > 详细

C#正则表达式判断输入的是不是数字

时间:2014-09-15 02:13:48      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   strong   数据   sp   on   c   new   

1.函数

        public static bool IsFloat(string str)
        {
            string regextext = @"^(-?\d+)(\.\d+)?$";
            Regex regex = new Regex(regextext, RegexOptions.None);
            return regex.IsMatch(str.Trim());
        }
2.调用

        if (!IsFloat(textBox11.Text))
        {
            MessageBox.Show("应该是一个数字", "数据输入错误提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            textBox11.SelectAll();
            textBox11.Focus();
            return; 
        }
3.注意

    应引入命名空间:using System.Text.RegularExpressions;


C#正则表达式判断输入的是不是数字

标签:style   io   ar   strong   数据   sp   on   c   new   

原文地址:http://blog.csdn.net/lucky51222/article/details/39281083

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!