Open In App

Scala String toCharArray() method with example

Last Updated : 29 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
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
// 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
// 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

Next Article

Similar Reads