. NET Common techniques _ string checking and judging

Source: Internet
Author: User

usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Text.RegularExpressions;namespacemyutility{/// <summary>    ///     /// </summary>     Public classIsnumber {/// <summary>        ///determines whether a string is an integer string/// </summary>        /// <param name= "message" ></param>        /// <returns></returns>         Public BOOLisnumber (String message) {Regex Rex=NewRegex (@"^\d+$"); if(Rex. IsMatch (message))return true; Else                return false; }        /// <summary>        ///An integer string that determines whether the string is a specified length/// </summary>        /// <param name= "message" ></param>        /// <param name= "Length" ></param>        /// <returns></returns>         Public BOOLIsnumber (String message,intlength) {String arg=@"^\d{"+length+"}$"; Regex Rex=NewRegex (ARG); if(Message! =""&& length >0&&Rex. IsMatch (message))return true; Else                return false; }        /// <summary>        ///determines whether a string is a decimal string of a specified length/// </summary>        /// <param name= "value" ></param>        /// <param name= "Length" ></param>        /// <returns></returns>         Public Static BOOLIsdecimal (String value,intPrecisionintScale ) {            if(Precision = =0)return false; stringPattern =@"(^\d{1,"+precision+"}"; if(scale>0) Pattern+=@"\.\d{0,"+ scale +"}$)|"+pattern; Pattern+="$)"; returnRegex.IsMatch (Value,pattern); }    }}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.