📜  红宝石 |字符串代码点方法

📅  最后修改于: 2022-05-13 01:55:29.120000             🧑  作者: Mango

红宝石 |字符串代码点方法

codepoints是 Ruby 中的 String 类方法,用于返回 str 中字符的整数序数数组。

示例 1:

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

输出:

82
117
98
121

示例 2:

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

输出:

83
116
114
105
110
103