Ruby 字符串 each_str方法
each_str 是Ruby中的一个字符串类方法,用于将给定字符串中的每个字符传递给给定的块,如果没有给定块,则返回一个枚举器。
语法: str.each_byte
参数: 这里,str是给定的字符串。
返回: 一个枚举器。
例子 1 :
# Ruby program to demonstrate
# the each_char method
# Taking a string and
# using the method
puts "Ruby".each_char{|b| print b, ' ' }
puts "Programming".each_char{|b| print b, ' ' }
输出
R u b y Ruby
P r o g r a m m i n g Programming
例2 :
# Ruby program to demonstrate
# the each_char method
# Taking a string and
# using the method
puts "Sample".each_char{|b| print b, ' ' }
puts "Input".each_char
输出
S a m p l e Sample
#