Open In App

Ruby | Random bytes() function

Improve
Improve
Like Article
Like
Save
Share
Report

Random#bytes() is a Random class method which returns random binary string containing size bytes.

Syntax: Random.bytes()

Parameter: Random values

Return: random binary string containing size bytes.

Example #1 :




# Ruby code for Random.bytes() method
  
# declaring Random value
date_a = Random.new()
  
# declaring Random value
date_b = Random.new()
  
# bytes value
puts "Random bytes form : #{date_a.bytes(2)}\n\n"
  
puts "Random bytes form : #{date_b.bytes(10)}\n\n"


Output :

Random bytes form : ??

Random bytes form : f??????

Example #2 :




# Ruby code for Random.bytes() method
  
# declaring Random value
date_a = Random.new.bytes(5)
  
# declaring Random value
date_b = Random.new()
  
# bytes value
puts "Random bytes form : #{date_a}\n\n"
  
puts "Random bytes form : #{date_b.bytes(10)}\n\n"


Output :

Random bytes form : ?}???

Random bytes form : TI     ???g&n

Last Updated : 17 Dec, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads