I want to truncate the decimals like below
i.e.
- 2.22939393 -> 2.229
- 2.22977777 -> 2.229
|
I want to truncate the decimals like below i.e.
| |||||||
feedback
|
Of course, this won't work if you're trying to truncate rounding error, but it should work fine with the values you give in your examples. See the first two answers to this question for details on why it won't work sometimes. | |||||||||||
feedback
|
|
You can use Math.Round:
Or you can use ToString with the N3 numeric format.
EDIT: Since you don't want rounding, you can easily use Math.Truncate:
| |||||
feedback
|
|
A function to truncate an arbitrary number of decimals:
| |||
|
feedback
|
|
What format are you wanting the output? If you're happy with a string then consider the following C# code:
The result will be "3.12". This link might be of use if you're using .NET. http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx I hope that helps....but unless you identify than language you are using and the format in which you want the output it is difficult to suggest an appropriate solution. | |||
|
feedback
|
|
Maybe another quick solution could be:
| |||
|
feedback
|
|
Forget Everything just check out this
| ||||
|
feedback
|
|
Here's an extension method which does not suffer from integer overflow (like some of the above answers do). It also caches some powers of 10 for efficiency.
| |||
|
feedback
|
|
Try this
| |||
|
feedback
|
|
You can also use Math.Truncate.
EDIT: Never mind. Didn't notice you're truncating to a given precision. | |||
|
feedback
|
|
Try this:
It can be writen shorter, but this is more descriptive. EDIT: Short way:
| ||||
feedback
|