I have a string which needs a decimal place inserted to give a precision of 2.
3000 => 30.00
300 => 3.00
30 => .30
|
1
|
|||||
|
|
|
Given a string input, convert to integer, divide by 100.0 and use String.Format() to make it display two decimal places.
Smarter and without converting back and forth - pad the string with zeros to at least two characters and then insert a point two characters from the right.
Pad to a length of three to get a leading zero. Pad to precision + 1 in the extension metheod to get a leading zero. And as an extension method, just for kicks.
Note: PadLeft() is correct.
|
||||||||||
|
|
|
Use tryParse to avoid exceptions.
|
|||
|
|
|
here's very easy way and work well.. urValue.Tostring("F2") let say.. int/double/decimal urValue = 100; urValue.Tostring("F2"); result will be "100.00" so F2 is how many decimal place u want if you want 4 place, then use F4 |
||
|
|