📜  红宝石 | String each_codepoint 方法

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

红宝石 | String each_codepoint 方法

each_codepoint是 Ruby 中的 String 类方法,用于传递给定字符串中每个字符的整数序号。当应用于给定块的 Unicode字符串时,它也称为代码点。如果没有给出块,则返回一个枚举器。

示例 1:

# Ruby program to demonstrate 
# the each_codepoint method 
       
# Taking a string and 
# using the method
puts "Sample\u0639".each_codepoint{|b| print b, ' ' }
puts "Input".each_codepoint{|b| print b, ' ' }

输出:

83 97 109 112 108 101 1593 Sample
73 110 112 117 116 Input

示例 2:

# Ruby program to demonstrate 
# the each_codepoint method 
       
# Taking a string and 
# using the method
puts "Ruby".each_codepoint{|b| print b, ' ' }
puts "String".each_codepoint{|b| print b, ' ' }

输出:

82 117 98 121 Ruby
83 116 114 105 110 103 String