當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。