1. ホーム
  2. ruby

[解決済み] Rubyでオブジェクトのキーを配列として取得する

2022-11-08 03:08:54

質問

私はRubyの初心者ですが、次のようなオブジェクトがあるとします。

{"apple" => "fruit", "carrot" => "vegetable"}

キーだけの配列を返すにはどうしたらよいでしょうか?

["apple", "carrot"]

どのように解決するのですか?

hash = {"apple" => "fruit", "carrot" => "vegetable"}
array = hash.keys   #=> ["apple", "carrot"]

簡単なことです