method

each_byte

v2_6_3 - Show latest stable - Class: String
each_byte()
public

Passes each byte in str to the given block, or returns an enumerator if no block is given.

"hello".each_byte {|c| print c, ' ' }

produces:

104 101 108 108 111