findFirstMatchIn
方法(或屬性)屬於util.matching.Regex類(class),其相關用法說明如下。
用法:
def findFirstMatchIn(source: CharSequence): Option[Match]
返回給定字符序列中此 Regex
的可選第一個匹配項,如果不存在則返回 None.
如果匹配成功,可以查詢scala.util.matching.Regex.Match獲取更多數據。
值參數:
- source
要匹配的文本。
返回:
文本中第一個匹配字符串的scala.util.matching.Regex.Match 的scala.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 Regex.findFirstIn用法及代碼示例
- Scala Regex.findPrefixMatchOf用法及代碼示例
- Scala Regex.findPrefixOf用法及代碼示例
- Scala Regex.findAllMatchIn用法及代碼示例
- Scala Regex.findAllIn用法及代碼示例
- Scala Regex.quoteReplacement用法及代碼示例
- Scala Regex.unapplySeq用法及代碼示例
- Scala Regex.replaceSomeIn用法及代碼示例
- Scala Regex.unanchored用法及代碼示例
- Scala Regex.replaceAllIn用法及代碼示例
- Scala Regex.quote用法及代碼示例
- Scala Regex.this用法及代碼示例
- Scala Regex.matches用法及代碼示例
- Scala Regex.Groups用法及代碼示例
- Scala Regex.Match用法及代碼示例
- Scala Reverse.tails用法及代碼示例
- Scala Reverse.sortBy用法及代碼示例
- Scala Reverse.lengthCompare用法及代碼示例
- Scala Reverse.collectFirst用法及代碼示例
- Scala Reverse.permutations用法及代碼示例
- Scala Reverse.lazyZip用法及代碼示例
- Scala Reverse.addString用法及代碼示例
- Scala Reverse.transpose用法及代碼示例
- Scala Reverse.sizeIs用法及代碼示例
- Scala Reverse.lengthIs用法及代碼示例
注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 Regex.findFirstMatchIn。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。