Truncate a floating point number without rounding up

前端 未结 2 909
死守一世寂寞
死守一世寂寞 2021-02-11 20:43

I have a floating point number that I want to truncate to 3 places but I don\'t want to round up.

For example, convert 1.0155555555555555 to 1.015

2条回答
  •  醉话见心
    2021-02-11 21:19

    You can also convert to a BigDecimal, and call truncate on it.

    1.237.to_d.truncate(2).to_f # will return 1.23
    

提交回复
热议问题