Open In App

Scala String matches() method with example

Last Updated : 03 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The matches() method is used to check if the string stated matches the specified regular expression in the argument or not.
Method Definition: Boolean matches(String regex) Return Type: It returns true if the string matches the regular expression else it returns false.
Example #1: Scala
// Scala program of int matches()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying matches method
        val result = "Preeti".matches(".*i")
        
        // Displays output
        println(result)
        
    }
} 
Output:
true
So, here the regular expression matches the string stated. So, it returns true. Example #2: Scala
// Scala program of int matches()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying matches method
        val result = "Preeti".matches(".i.*")
        
        // Displays output
        println(result)
    
    }
} 
Output:
false

Similar Reads