Ruby 字符串 chars()方法

Ruby 字符串 chars()方法

chars 是Ruby中的一个字符串类方法,用于返回str中的字符数组。

语法: str.chars

参数: 这里,str是给定的字符串

返回: 一个字符数组。

例子 1 :

# Ruby program to demonstrate 
# the chars method 
       
# Taking a string and 
# using the method 
puts "Ruby String".chars() 
puts "Methods".chars() 

输出

R
u
b
y

S
t
r
i
n
g
M
e
t
h
o
d
s

例2 :

# Ruby program to demonstrate 
# the chars method 
       
# Taking a string and 
# using the method 
puts "GFG".chars() 
puts "G4G".chars() 

输出

G
F
G
G
4
G

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程