假设我有一个正则表达式模式,我想匹配许多字符串。
val Digit = """\d""".r
我只想检查给定的String是否完全匹配Regex。在Scala中,有什么好的和惯用的方法来做到这一点?
我知道我可以在Regexes上进行模式匹配,但是这种情况在语法上并不令人满意,因为我没有要提取的组:
scala> "5" match { case Digit() => true case _ => false }
res4: Boolean = true
或者,我可以回到基本的Java模式:
scala> Digit.pattern.matcher("5").matches
res6: Boolean = true
这也不优雅。
有更好的解决方案吗?
"5" match { case Digit() => true case _ => false }
看起来比使用基础模式对象更好。