each_grapheme_cluster es un método de clase String en Ruby que se usa para pasar cada grupo de grafemas en la string dada al bloque dado, o devuelve un enumerador si no se da ningún bloque.
Sintaxis: str.each_grapheme_cluster
Parámetros: Aquí, str es la string dada.
Devuelve: un enumerador.
Ejemplo 1:
# Ruby program to demonstrate # the each_grapheme_cluster method # Taking a string and # using the method puts "Ruby".each_grapheme_cluster puts "String".each_grapheme_cluster.to_a.size
Producción:
# 6
Ejemplo 2:
# Ruby program to demonstrate # the each_grapheme_cluster method # Taking a string and # using the method puts "Sample".each_grapheme_cluster puts "Input".each_grapheme_cluster.to_a.size
Producción:
# 5
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA