Can any one give me some predefined methods or user defined methods to convert string numbers(example : 123455) to comma separated integer value (example : 1,23,455).
Thanks in advance,
sathish
|
|
I assume
Now we use Here you cannot convert you should use |
||||
|
|
|
|||
|
|
|
use java.text.NumberFormat, this will solve your problem. |
|||
|
|
Finally I found an exact solution for my needs.
|
||||
|
|
|
What you're looking for is the DecimalFormat class (here), where you can set easily separator and convert a String to a Number with the method |
|||
|
|
|
The result you expected that is "to comma separated integer value", is in my opinion incorrect. However, if you are just looking for output representation, how about these lines of codes shown below? (Note, you can not parse the value return from valueToString to some data type long because it just does not make sense :) )
|
|||
|
|