Mega Code Archive

 
Categories / Ruby / File Directory
 

Find the fifth byte

require 'stringio' def fifth_byte(file)   file.seek(5)   file.read(1) end fifth_byte(StringIO.new("123456"))          # => "6"