Ruby 字符串 each_byte方法
each_byte 是Ruby中的一个字符串类方法,用于将给定字符串中的每个字节传递给给定的块,如果没有给定块,则返回一个枚举器。
语法: 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