Click here to Skip to main content
Click here to Skip to main content

Check If A String Value Is Numeric

By , 6 Mar 2006
 

Introduction

This article will give you a way to determine if a given string has a valid number style (Integer, Float, Currency, etc.) according to specified/current culture.

Background

In all VBScript and Visual Basic applications, there is a built-in function called IsNumeric / IsCurrency, but in C# there is no built-in function with the same functionality.
I have investigated a little and found out that all given solutions always use try catch to find out if the given string value can be parsed.

That seemed like a good way to test it, BUT what if the number contains commas or a currency sign?
Then I have to add another check to this code and strip down the non numeric sign and test the result.
Here I present a simple way that is supported by C#.

The Solution

In the code shown below, I actually use a built-in functionality of C# to determine if a given string value stands up to the requirements I want.

public bool isNumeric(string val, System.Globalization.NumberStyles NumberStyle)
{
    Double result;
    return Double.TryParse(val,NumberStyle,
		System.Globalization.CultureInfo.CurrentCulture,out result);
}

The above function allow me to test if the given string stands up to one or more of the following styles:

  • Hex Number
  • Number
  • Currency
  • Float

A more detailed list and explanation regarding System.Globalization.NumberStyles can be found here.

Examples

If you want to test for an integer number, then do the following:

isNumeric("42000", System.Globalization.NumberStyles.Integer)

If you want to test for an integer number separated with commas, then do the following:

isNumeric("42,000", System.Globalization.NumberStyles.Integer | 
	System.Globalization.NumberStyles.AllowThousands)

Using Other Cultures

I use the current culture as shown in the code below.
A list of all available culture names can be obtained here.

public bool isNumeric
    (string val, System.Globalization.NumberStyles NumberStyle, string CultureName)
{
    Double result;
    return Double.TryParse(val,NumberStyle,new System.Globalization.CultureInfo
				(CultureName),out result);
}

There are many ways to approach this problem, I chose the one that suits beginner levels and does not involve any Regular Expression which requires a higher level of expertise.

If you are interested in a solution that involves Regular Expressions, please take a look at the following links:

Enjoy and tell me your findings.

History

  • 7th March, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Leon Kovach
Web Developer
Israel Israel
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionSimple VBScript program to Validate Numeric valuememberGauthamvit200310 Jul '11 - 7:46 
GeneralRegEx for this function [modified]memberAnthony Urwin8 Sep '10 - 0:24 
QuestionDecimals?membersmcirish13 Jan '10 - 3:06 
GeneralYes yes yesmemberL C D8 Dec '08 - 15:04 
GeneralAnother way A one-liner too :)memberHusko25 Mar '08 - 10:00 
Questionhow to check if string is int and return booleanmembermax_dev2006@yahoo.com11 Oct '06 - 22:58 
AnswerRe: how to check if string is int and return booleanmemberGhecco17 Oct '06 - 5:31 
GeneralRe: how to check if string is int and return booleanmembertfaiz20 Jun '11 - 22:29 
GeneralWorking for mememberThisTrain7 Mar '06 - 5:29 
GeneralGood ThinkingmemberThisTrain7 Mar '06 - 5:17 
GeneralNo, no, nomembernorm.net7 Mar '06 - 4:35 
GeneralRe: No, no, nomemberMarc Brooks7 Mar '06 - 4:41 
GeneralRe: No, no, nomembernorm.net7 Mar '06 - 8:49 
GeneralRe: No, no, nomembernorm.net7 Mar '06 - 8:49 
GeneralRe: No, no, nomemberkingbin7 Mar '06 - 5:54 
GeneralRe: No, no, nomembernorm.net7 Mar '06 - 8:49 
GeneralRe: No, no, nomembercerberiukas14 Mar '06 - 4:25 
AnswerRe: No, no, nomemberLeon Kovach18 Mar '06 - 22:57 
GeneralRe: No, no, nomemberdave78638313 Aug '07 - 7:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 7 Mar 2006
Article Copyright 2006 by Leon Kovach
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid