📌  相关文章
📜  带有示例的 Scala String match() 方法

📅  最后修改于: 2022-05-13 01:55:28.794000             🧑  作者: Mango

带有示例的 Scala String match() 方法

matches()方法用于检查所述字符串是否与参数中指定的正则表达式匹配。

示例 #1:

// 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)
          
    }
} 
输出:
true

因此,这里的正则表达式匹配所述的字符串。因此,它返回 true。
示例 #2:

// 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)
      
    }
} 
输出:
false