How can I accept strings like "$1,250.00" and convert it to a decimal in C#?
Do I just do a replace("$", "") and (",", "") or is there a different way I should handle this kind of input?
|
feedback
|
|
Have you tried Decimal.Parse with the AllowCurrencySymbol option (and other supporting options)?
| ||||
|
feedback
|
|
now with formatting :)
| |||||||
feedback
|
No. For one, code like this is not fun to maintain. Secondly, '$' is not the only currency symbol in the world, and ',' is not the only thousands separtor. That is, code like you're thinking makes globalization issues difficult.
Yes. Use
| |||
|
feedback
|
|
This should do the trick:
| |||
|
feedback
|