Open In App

Scala String toCharArray() method with example

Last Updated : 29 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The toCharArray() method is utilized to convert a stated string to CharArray.

Method Definition: char[] toCharArray()

Return Type: It returns CharArray.

Example: 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)
        }
          
    }


Output:

G
e
e
k
s
f
o
r
G
e
e
k
s

Example: 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)
        }
      
    }


Output:

N
i
d
h
i


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads