Open In App

Ruby | String codepoints Method

Last Updated : 13 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
codepoints is a String class method in Ruby which is used to return an array of the Integer ordinals of the characters in str.
Syntax: str.codepoints Parameters: Here, str is the given string. Returns: An array of the Integer ordinals of the characters in str.
Example 1: Ruby
# Ruby program to demonstrate 
# the codepoints method 
     
# Taking a string and 
# using the method 
puts "Ruby".codepoints
Output:
82
117
98
121
Example 2: Ruby
# Ruby program to demonstrate 
# the codepoints method 
     
# Taking a string and 
# using the method 
puts "String".codepoints
Output:
83
116
114
105
110
103

Next Article

Similar Reads