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


Ruby String each_byte用法及代碼示例


each_byte是Ruby中的String類方法,用於將給定字符串中的每個字節傳遞給給定塊,或者如果沒有給定塊則返回枚舉器。

用法: str.each_byte {|integer| block }

參數:在這裏,str是給定的字符串。


返回值:枚舉器。

示例1:

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

輸出:

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

示例2:

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

輸出:

82 117 98 121 Ruby
80 114 111 103 114 97 109 109 105 110 103 Programming


相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | String each_byte Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。