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 小於零或大於長度輸入字符序列。