grapheme_clusters es un método de clase String en Ruby que se usa para devolver una array de grupos de grafemas en la string dada.
Sintaxis: str.grapheme_clusters
Parámetros: Aquí, str es la string dada.
Devuelve: una array de grupos de grafemas.
Ejemplo 1:
# Ruby program to demonstrate # the grapheme_clusters method # Taking a string and # using the method puts "Sample".grapheme_clusters puts "Program".grapheme_clusters
Producción:
S a m p l e P r o g r a m
Ejemplo 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
Producción:
R u b y S t r i n g
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