Tbpgr Blog

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

2014-12-14から1日間の記事一覧

Ruby | String | each_byte

概要 String#each_byte {|byte| ... } -> self String#each_byte -> Enumerator 詳細 文字列の各バイトに対して繰り返す。 ブロックを省略すると、 Enumerator を返却 サンプルコード 'hoge'.each_byte { |e|print e, ',' } puts 'hoge'.each_byte { |e|prin…