I want to format a string number. For example:
double number="118176";
It should look like 1181.71 or 1181,71.
I couldn't find any format type. I tried some of format types as ToString("#,0") but it didn't work.
Thanks for any advice.
|
First of all: a
This takes the number and creates a string from it using the decimal number format with 2 decimal places. What you didn't say is why you expect the integer
EDIT
This converts the number in
|
|||||||
|
|
See Fixed-point on this page (assuming .net): http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx You'll have to divide by 100 first though. |
|||
|
|
|
I think, what you are looking for is this:
See here for details. |
|||
|
|
|
Use can refer the below code in case of Java. 1) First define the Decimal Format instance. DecimalFormat decimalFormat = new DecimalFormat("####.##"); 2) Then pass the decimal value to the 'format' method String dummyString = decimalFormat.format(pressureValue).toString() where pressureValue - Decimal number Hope this will be useful. |
||||
|
|
"118176"end up with1181.71? The6turns into a1for what reason? – Oded♦ Sep 21 '12 at 9:41