Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2012-07-09から1日間の記事一覧

書籍 Ruby Cookbook | keyとvalueの入れ替え

パンくず Ruby Cookbook keyとvalueの入れ替え 概要 keyとvalueの入れ替え 内容 keyとvalueの入れ替えするには以下の構文を利用します。 hash.invert サンプル # encoding: Windows-31J require "pp" hash = {ge:"ho",go:"hi",shi:"ha"} pp hash pp hash.inv…

書籍 Ruby Cookbook | HashをYamlに変換

パンくず Ruby Cookbook HashをYamlに変換 概要 HashをYamlに変換 内容 HashをYamlに変換するには以下の構文を利用します。 require yaml hash.to_yaml サンプル # encoding: Windows-31J require 'yaml' require 'pp' hash = [neuro:'majin',korosensei:'un…