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

Convert String To Decimal

By , 5 Jun 2006
 

Introduction

I tried to convert a currency string ("$ 1.200,00") to decimal using c# and VS2005, I can't did it using Decimal.Parse("$ 1.200,00"). 
Allways the error message was "Input String was not in a correct format".  But I saw
I was using the correct format.

Solution

Then I retrieved a old code using NumberStyles. I used the same code but the error still the same.

I did test the line code and when I removed the space from the currency string. Voila, it works.

This is the function.

private decimal ToDecimal(string Value)
{
 if (Value.Length == 0)
                return 0;
        else
                return Decimal.Parse(Value.Replace(" ", ""), NumberStyles.AllowThousands 
   | NumberStyles.AllowDecimalPoint | NumberStyles.AllowCurrencySymbol);
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Edusie
Web Developer
Colombia Colombia
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   
GeneralThank You !memberpolczym8 May '10 - 8:42 
GeneralNicememberRavi J Patel4 May '10 - 19:15 
GeneralConvert string to decimal , rithy(cambodia)memberthyrith30 Mar '10 - 21:54 
GeneralSolutionmemberrosilvioro21 Jul '09 - 2:48 
JokeExcelent ArticlememberJuan Carlos Chávez Trinidad24 Jun '09 - 16:34 
GeneralMy vote of 1memberlousyprogrammer4 Jun '09 - 18:05 
GeneralMy vote of 1membermuz@dogru.ch19 Dec '08 - 0:49 
General',' vs '.'memberEuGenius_Krivbass24 Apr '08 - 5:53 
GeneralRe: ',' vs '.'memberbeimklabautermann3 Jun '10 - 5:39 
GeneralThank YoumemberNachiappanR10 Jul '07 - 21:40 
Generaluse decimal.Parse insteadmembertekun6 Nov '06 - 14:12 
GeneralCultureInfomemberErnst Naezer5 Jun '06 - 23:52 
QuestionWhy so complicated?membermav.northwind5 Jun '06 - 22:07 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 6 Jun 2006
Article Copyright 2006 by Edusie
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid