Possible Duplicate:
c# - How do I round a decimal value to 2 decimal places (for output on a page)
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.
|
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
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. |
|||||||||||
|
|
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:
|
|||||||
|
|
A function to truncate an arbitrary number of decimals:
|
|||
|
|
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.
|
|||
|
|
|
This is similar to TcKs suggestion above, but using math.truncate rather than int conversions VB: but you'll get the idea
|
|||
|
|
|
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. |
|||
|
|
Maybe another quick solution could be:
|
|||
|
|
|
Forget Everything just check out this
|
||||
|
|
|
Try this
|
|||
|
|
|
You can also use Math.Truncate.
EDIT: Never mind. Didn't notice you're truncating to a given precision. |
|||
|
|
|
Try this:
It can be writen shorter, but this is more descriptive. EDIT: Short way:
|
||||
|