How can I convert "1,000" (input obtained as a string) to an integer?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
|||||||||||||
|
|
|||||||||
|
|
|
|||
|
|
I'd take a look at this class: http://download.oracle.com/javase/1.4.2/docs/api/java/text/NumberFormat.html |
|||
|
|
Try this
|
|||
|
|
Prefer avoiding "magic numbers"
|
|||
|
|
|
Use code like the following.
|
|||
|
|
|
Just replace all comma with empty string and then use convert.ToInt32();
|
|||||||||||
|