Open In App

Ruby | String bytes Method

Improve
Improve
Like Article
Like
Save
Share
Report

bytes is a String class method in Ruby which is used to return an array of the bytes for the given string.

Syntax: str.bytes

Parameters: Here, str is the specified string.

Returns: An array of bytes.

Example 1:




# Ruby program to demonstrate
# the bytes method
     
# Taking a string and
# using the method
puts "String".bytes


Output:

83
116
114
105
110
103

Example 2:




     
# Ruby program to demonstrate
# the bytes method
     
# Taking a string and
# using the method
puts "ABCD".bytes


Output:

65
66
67
68

Last Updated : 07 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads