字串判斷公用方法

來源:互聯網
上載者:User
/**//// <summary>
        /// 是否是數字型
        /// </summary>
        /// <param name="value"></param>
        /// <returns></returns>
        public static bool IsNumeric(string value)
        ...{
            return Regex.IsMatch(value, @"^[+-]?d*[.]?d*$");
        }

        /**//// <summary>
        /// 是否是整數
        /// </summary>
        /// <param name="value"></param>
        /// <returns></returns>
        public static bool IsInt(string value)
        ...{
            return Regex.IsMatch(value, @"^[+-]?d*$");
        }

        /**//// <summary>
        /// 是否是無符號數字
        /// </summary>
        /// <param name="value"></param>
        /// <returns></returns>
        public static bool IsUnsign(string value)
        ...{
            return Regex.IsMatch(value, @"^d*[.]?d*$");
        }
        /**//// <summary>
        /// 是否是日期型
        /// 支援的格式包括("1980-06-06"和"1980/06/06")
        /// </summary>
        /// <param name="dateStr"></param>
        /// <returns></returns>
        public static bool  IsDate(string dateStr)
        ...{

            string datePat =@"^(d{4})(/|-)(d{1,2})(/|-)(d{1,2})$";
            bool IsMatch=Regex.IsMatch(dateStr,datePat);
            //日期格式不正確,正確格式:1980-06-06
            if(!IsMatch)
                return false;
            string[] dates=dateStr.Split('/','-');           
            if(dates==null || dates.Length<3)
                return false;

            int year =int.Parse(dates[0]);
            int month =int.Parse(dates[1]);
            int day =int.Parse(dates[2]);

            if (month < 1 || month > 12)
            ...{
                //"月份必須是1月-12月之間";
                return false;
            }

            if (day < 1 || day > 31)
            ...{
                //"日必須是1-31日之間";
                return false;
            }

            if ((month==4 || month==6 || month==9 || month==11) && day==31)
            ...{
                //month doesn't have 31 days!"
                    return false;
            }

            if (month == 2)
            ...{ // check for february 29th
                bool isleap = (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0));
                if (day > 29 || (day==29 && !isleap))
                ...{
                    // year + " 年 2 月沒有 " + day + " 日"
                    return false;
                }
            }
            return true; // date is valid
        }
        #endregion

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.