Open In App
Related Articles

Ruby | StringIO bytes function

Improve Article
Improve
Save Article
Save
Like Article
Like

StringIO#bytes() : bytes() is a StringIO class method which returns the value of bytes of the stringIO.

Syntax: StringIO.bytes() Parameter: StringIO values Return: value of bytes of the stringIO.

Example #1 : 

Ruby




# Ruby code for StringIO.bytes() method
 
# loading StringIO
require 'stringio'
 
# declaring StringIO
a = StringIO.new("geeksforgeeks")
 
 
# StringIO
puts "StringIO a : #{a.string}\n\n"
 
 
# bytes form
puts "StringIO a bytes form : #{a.bytes}\n\n"


Output :

StringIO a : geeksforgeeks

StringIO a bytes form : #

Example #2 : 

Ruby




# Ruby code for StringIO.bytes() method
 
# loading StringIO
require 'stringio'
 
# declaring StringIO
a = StringIO.new("icancode")
 
# StringIO
puts "StringIO a : #{a.string}\n\n"
 
# bytes form
puts "StringIO a bytes form : #{a.bytes}\n\n"


Output :

StringIO a : icancode

StringIO a bytes form : #

Note : The Enumerator value can change as per the compiler and system.

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 26 Dec, 2022
Like Article
Save Article
Similar Reads