作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我有以下数组。
>> gold_prices
=> [["2011-01-11", "134.91"], ["2011-01-10", "134.12"],
["2011-01-07", "133.58"], ["2011-01-06", "133.83"]]
将每个子数组转换为 :string => float 的散列的最干净的方法是什么?
最佳答案
>> gold_prices = Hash[gold_prices.map {|date, price| [date, price.to_f]}]
=> {"2011-01-11" => 134.91, "2011-01-10" => 134.12,
"2011-01-07" => 133.58, "2011-01-06" => 133.83}
关于ruby - 在 Ruby 中将字符串数组的数组转换为字符串和 float 的散列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4674996/
我是一名优秀的程序员,十分优秀!