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


Scala Regex.findFirstMatchIn用法及代碼示例


findFirstMatchIn 方法(或屬性)屬於util.matching.Regex類(class),其相關用法說明如下。

用法:

def findFirstMatchIn(source: CharSequence): Option[Match]

返回給定字符序列中此 Regex 的可選第一個匹配項,如果不存在則返回 None.

如果匹配成功,可以查詢scala.util.matching.Regex.Match獲取更多數據。

值參數:

source

要匹配的文本。

返回:

文本中第一個匹配字符串的scala.util.matching.Regex.Matchscala.Option.

例子:

("""[a-z]""".r findFirstMatchIn "A simple example.") map (_.start) // returns Some(2), the index of the first match in the text

源碼:

Regex.scala

相關用法


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