Ruby 字符串 each_codepoint方法
each_codepoint 是Ruby中的一个String类方法,用于传递给定字符串中每个字符的整数序号。当应用于Unicode字符串时,它也被称为codepoint,用于给定的块。如果没有给定块,则返回一个枚举器。
语法: str.each_codepoint
参数: 这里,str是给定的字符串。
返回: 一个整数序号或一个枚举器。
例子 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