zoukankan      html  css  js  c++  java
  • 判断是否是数字类 LZU

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Text.RegularExpressions;
    
    namespace shop
    {
        public class IsNum
        {
            /// <summary>
            /// 判断是否是数字
            /// </summary>
            /// <param name="strNumber">要判断的字符串</param>
            /// <returns></returns>
            public bool IsNumber(String strNumber)
            {
                Regex objNotNumberPattern = new Regex("[^0-9.-]");
                Regex objTwoDotPattern = new Regex("[0-9]*[.][0-9]*[.][0-9]*");
                Regex objTwoMinusPattern = new Regex("[0-9]*[-][0-9]*[-][0-9]*");
                String strValidRealPattern = "^([-]|[.]|[-.]|[0-9])[0-9]*[.]*[0-9]+$";
                String strValidIntegerPattern = "^([-]|[0-9])[0-9]*$";
                Regex objNumberPattern = new Regex("(" + strValidRealPattern + ")|(" + strValidIntegerPattern + ")");
    
                return !objNotNumberPattern.IsMatch(strNumber) &&
                 !objTwoDotPattern.IsMatch(strNumber) &&
                 !objTwoMinusPattern.IsMatch(strNumber) &&
                 objNumberPattern.IsMatch(strNumber);
            }        
        }
    }
    


  • 相关阅读:
    1015,存储过程,视图
    1009,数据库查询,聚合函数,日期时间函数
    1008,数据库表格创建,名称,格式

    公历和农历转换的JS代码
    面向对象之封装
    HTML之锚点
    HTML之css+div
    HTML基础
    SQL之定义变量
  • 原文地址:https://www.cnblogs.com/lzugis/p/6539928.html
Copyright © 2011-2022 走看看