Determines whether a string is a number.

Source: Internet
Author: User

To determine whether a string is a number or not:

1. The simplest method

Public bool isnumber (string Str) {int number = 0; return Int. tryparse (STR, out number );}

This method is applicable to most situations in daily life. However, in extreme cases, for example, if the maximum value of Int. maxvalue (2147483647) is exceeded, it will fail.

2. 10 thousand foolproof Methods

Public static bool isnumber (string numerictext) {bool isnumber = false; foreach (char C in numerictext) {isnumber = Char. isnumber (c); If (! Isnumber) {return isnumber ;}

This method is not very efficient and requires traversing strings.

3. Powerful Regular Expression matching
Regular Expressions are generated for matching verification.

Public static bool isnumber (string text) {RegEx = new RegEx (@ "^ [-+]? [0-9] * \.? [0-9] + $ "); Return RegEx. ismatch (text );}

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.