当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String each_codepoint用法及代码示例


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

用法: 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


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String each_codepoint Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。