indexOf
所在位置是kotlin.text.indexOf
,其相关用法介绍如下。
用法一
返回此字符串中第一次出现指定字符的索引,从指定的 startIndex 开始。
参数
ignoreCase
-true
匹配字符时忽略字符大小写。默认false
.
返回 char 第一次出现的索引,如果没有找到,则返回 -1。
用法二
从指定的 startIndex 开始,返回指定 string 首次出现在此字符序列中的索引。
例子:
import java.util.Locale
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
fun matchDetails(inputString: String, whatToFind: String, startIndex: Int = 0): String {
val matchIndex = inputString.indexOf(whatToFind, startIndex)
return "Searching for '$whatToFind' in '$inputString' starting at position $startIndex: " +
if (matchIndex >= 0) "Found at $matchIndex" else "Not found"
}
val inputString = "Never ever give up"
val toFind = "ever"
println(matchDetails(inputString, toFind)) // Searching for 'ever' in 'Never ever give up' starting at position 0: Found at 1
println(matchDetails(inputString, toFind, 2)) // Searching for 'ever' in 'Never ever give up' starting at position 2: Found at 6
println(matchDetails(inputString, toFind, 10)) // Searching for 'ever' in 'Never ever give up' starting at position 10: Not found
//sampleEnd
}
输出:
Searching for 'ever' in 'Never ever give up' starting at position 0: Found at 1 Searching for 'ever' in 'Never ever give up' starting at position 2: Found at 6 Searching for 'ever' in 'Never ever give up' starting at position 10: Not found
参数
ignoreCase
-true
匹配字符串时忽略字符大小写。默认false
.
返回 string 或 -1
第一次出现的索引,如果没有找到。
相关用法
- Kotlin indices用法及代码示例
- Kotlin ifBlank用法及代码示例
- Kotlin iterator用法及代码示例
- Kotlin isEmpty用法及代码示例
- Kotlin isNullOrBlank用法及代码示例
- Kotlin isNotBlank用法及代码示例
- Kotlin isJavaIdentifierStart用法及代码示例
- Kotlin isNullOrEmpty用法及代码示例
- Kotlin isJavaIdentifierPart用法及代码示例
- Kotlin ifEmpty用法及代码示例
- Kotlin isNotEmpty用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin Double.dec用法及代码示例
- Kotlin windowedSequence用法及代码示例
- Kotlin contentToString用法及代码示例
- Kotlin groupByTo用法及代码示例
- Kotlin commonPrefixWith用法及代码示例
- Kotlin MatchResult.Destructured用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.text.indexOf。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。