Regex.matchesAt所在位置是kotlin.text.Regex.matchesAt,其相关用法介绍如下。

用法:

fun matchesAt(input: CharSequence, index: Int): Boolean

检查正则表达式是否与指定的 input 字符序列的一部分完全匹配在指定的 index 处。

matches 函数不同,它不需要匹配跨越到 input 的末尾。

例子:



fun main(args: Array<String>) {
//sampleStart
val releaseText = "Kotlin 1.5.30 is released!"
val versionRegex = "\\d[.]\\d[.]\\d+".toRegex()
println(versionRegex.matchesAt(releaseText, 0)) // false
println(versionRegex.matchesAt(releaseText, 7)) // true
//sampleEnd
}

输出:

false
true

异常

IndexOutOfBoundsException- 如果 index 小于零或大于长度输入字符序列。