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


Scala Regex.findPrefixMatchOf用法及代碼示例


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

用法:

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

在給定字符序列的開頭返回此 Regex 的可選匹配項,如果不匹配字符序列的前綴,則返回 None.

findFirstMatchIn 不同,此方法隻會在輸入的開頭返回匹配項。

值參數:

source

要匹配的文本。

返回:

匹配字符串的scala.util.matching.Regex.Matchscala.Option.

例子:

"""\w+""".r findPrefixMatchOf "A simple example." map (_.after) // returns Some(" simple example.")

源碼:

Regex.scala

相關用法


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