📅  最后修改于: 2022-03-11 15:04:47.600000             🧑  作者: Mango
代码示例1
hash = { name: 'Rob', age: '28' }
hash.transform_keys{ |key| key.to_s.upcase }
# => { "NAME" => "Rob", "AGE" => "28" }