Hay, i have some floats like these
4.3455
2.768
3.67
and i want to display them like this
4.34
2.76
3.67
I don't want to round the number up or down, just limit the amount of numbers shown after the decimal place to 2.
|
Hay, i have some floats like these
and i want to display them like this
I don't want to round the number up or down, just limit the amount of numbers shown after the decimal place to 2. |
||||
|
|
You're looking for
...but it looks like you want to truncate rather than rounding, so:
|
|||||||||||
|
|
If you don't want rounding to 2 decimal places, use
Note that this does have the slight downside of rounding when the number of decimal places passed to |
||||
|
|