标签: ruby
我正在尝试将坐标从字符串转换为浮点数,但没有给我字符串,之后的小数。我想念什么?
,
latitude = "45,815272" longitude = "16,23"
在to_f之后:
to_f
latitude.to_f => 45.0 longitude.to_f => 16.0
答案 0 :(得分:1)
请使用此
longitude.gsub(",",".").to_f