Regex.matchAt所在位置是kotlin.text.Regex.matchAt,其相關用法介紹如下。

用法:

fun matchAt(input: CharSequence, index: Int): MatchResult?

嘗試在 input 字符序列中的指定 index 處精確匹配正則表達式。

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

例子:



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

輸出:

null
1.5.30

異常

IndexOutOfBoundsException- 如果 index 小於零或大於長度輸入字符序列。

如果輸入在指定的 index 處與此 Regex 匹配,則返回 MatchResult 的實例,否則為 null