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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。