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
相关用法
- Ruby String hex用法及代码示例
- Ruby String chr用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String reverse用法及代码示例
- Ruby String length用法及代码示例
- Ruby String casecmp用法及代码示例
- Ruby String casecmp?用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String each_byte Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。