Ruby 字符串 grapheme_clusters方法
grapheme_clusters 是Ruby中的一个String类方法,用于返回给定字符串中的石墨烯簇数组。
语法: str.grapheme_clusters
参数: 这里,str是给定的字符串。
返回: 一个葡萄干簇的数组。
例子 1 :
# Ruby program to demonstrate
# the grapheme_clusters method
# Taking a string and
# using the method
puts "Sample".grapheme_clusters
puts "Program".grapheme_clusters
输出
S
a
m
p
l
e
P
r
o
g
r
a
m
例2 :
# Ruby program to demonstrate
# the grapheme_clusters method
# Taking a string and
# using the method
puts "Ruby\n".grapheme_clusters
puts "String".grapheme_clusters
输出
R
u
b
y
S
t
r
i
n
g