带有示例的 Scala String match() 方法
matches()方法用于检查所述字符串是否与参数中指定的正则表达式匹配。
Method Definition: Boolean matches(String regex)
Return Type: It returns true if the string matches the regular expression else it returns false.
示例 #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