El método toCharArray() se utiliza para convertir una string establecida en CharArray .
Definición del método: char[] toCharArray()
Tipo de retorno: Devuelve CharArray.
Ejemplo 1#
// Scala program of toCharArray() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toCharArray method val result = "GeeksforGeeks".toCharArray() for(m1<-result) { // Displays output println(m1) } } }
Producción:
G e e k s f o r G e e k s
Ejemplo: 2#
// Scala program of toCharArray() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toCharArray method val result = "Nidhi".toCharArray() for(m1 <- result) { // Displays output println(m1) } } }
Producción:
N i d h i
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA