Ruby-浮点数不带小数的字符串

时间:2018-09-21 14:42:25

标签: ruby

我正在尝试将坐标从字符串转换为浮点数,但没有给我字符串,之后的小数。我想念什么?

latitude = "45,815272"
longitude = "16,23"

to_f之后:

latitude.to_f => 45.0
longitude.to_f => 16.0

1 个答案:

答案 0 :(得分:1)

请使用此

 longitude.gsub(",",".").to_f