當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala string.Matches用法及代碼示例


Matches 方法(或屬性)屬於 scala.compiletime.ops.string 對象(object),其相關用法說明如下。

用法:

@experimental
type Matches[S <: String, Regex <: String] <: Boolean

測試此 String 單例類型是否與給定的正則表達式 String 單例類型匹配。

package scala.compiletime.ops
trait Snippet0 { self: string.type =>
  val x: Matches["unhappy", "un.*"] = true
}

源碼:

string.scala

相關用法


注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 string.Matches。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。