How to format a Currency string to Integer?

纵然是瞬间 提交于 2019-11-27 06:16:19

问题


I'm have a string with currency format like $35.00 and this has to be converted to 35.

Is that possible to retrieve using String.Format{ }


回答1:


int value = int.Parse("$35.00", NumberStyles.Currency);

Should give you the answer you need.

However, a value like $35.50 converted to an integer will likely not return what you want it to, as Integers do not support partial (decimal) numbers. You didn't specify what to expect in that situation.

[EDIT: Changed double to decimal which is safer to use with currency]

If you want to get a value of 35.5 in that situation, you might want to use the decimal type.

decimal value = decimal.Parse("$35.00", NumberStyles.Currency);

Note that you have to be very careful when dealing with money and floating point precision.



来源:https://stackoverflow.com/questions/4094334/how-to-format-a-currency-string-to-integer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!