Ruby 1.9.2 Reference Manual > All Libraries > Builtin Library > class String > bytes
each_byte {|byte| ... } -> selfbytes {|byte| ... } -> selfeach_byte -> Enumeratorbytes -> Enumerator文字列の各バイトに対して繰り返します。
例:
"str".each_byte do |byte|
p byte
end
# => 115
# => 116
# => 114
[SEE_ALSO] String#unpack