Open In App

Ruby | String bytes Method

Last Updated : 07 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
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
# 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
   
# Ruby program to demonstrate
# the bytes method
   
# Taking a string and
# using the method
puts "ABCD".bytes
Output:
65
66
67
68

Next Article

Similar Reads