Ruby 字符串 each_str方法

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
#

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程