vote up 0 vote down star

Hi

I have this number: 1234.5678 (as a text)

I need this number as double, with only 2 numbers after the dot

But without Round the number

in 1234.5678 - i get 1234.57

in 12.899999 - i get 12.90

How I can do it ?

flag

30% accept rate
I'm unclear. Do you want the result to be rounded or not. You say you don't want rounding. But you show rounded results. Are those the results you want or results you're getting that you're dissatisfied with? – Nosredna May 29 at 22:33
@Nosredna: He wants truncation, not rounding. – Brian May 29 at 23:28

7 Answers

vote up 1 vote down

Multiply by 100, take floor() of the number, divide by 100 again.

link|flag
vote up 1 vote down

This is because you can't represent these numbers exactly as doubles, so converting, rounding, and then reprinting as text results in a loss of precision.

Use 'decimal' instead.

link|flag
1  
NO, he's concerned with truncating rather than rounding. That doesn't have anything to do with the internal representation. – Charlie Martin May 30 at 15:34
vote up 4 vote down

You should be able to get what you want like this:

number.ToString("#0.00")
link|flag
never used the pound sign thing. is that the part that controls rounding? – Jared Updike May 30 at 0:00
@Jared: No, it an optional digit in a picture mask. – Henk Holterman May 30 at 12:01
vote up -1 vote down

This doesn't work?

		double d = 1234.5678;
		double rounded =Math.Round(d, 2);
link|flag
vote up 1 vote down

Take this floating point arithmetic!

var num = "1234.5678";
var ans = String.Empty;
if( !String.IsNullOrEmpty(num) && num.Contains('.') ) // per comment
{
  ans = num.Substring(0, num.IndexOf('.') + 3);
}

(This code carries no warranties express or implied).

link|flag
you could at least add the checks for not-exists and end-of-string :> – Jimmy May 29 at 23:12
vote up 3 vote down

You didn't post the results you wanted, but I assume you want truncation, so that you'll see 1234.56, and 12.89. Try:

decimal d = 1234.89999M;
Console.WriteLine(Math.Truncate(d * 100) / 100);
link|flag
vote up 1 vote down

This should do the trick.

string rawVal = "1234.5678";
System.Math.Floor((double.parse(rawVal)) * 100) / 100;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.