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

用法:

@JvmName("replaceFirstCharWithChar") inline fun String.replaceFirstChar(
    transform: (Char) -> Char
): String
@JvmName("replaceFirstCharWithCharSequence") inline fun String.replaceFirstChar(
    transform: (Char) -> CharSequence
): String

返回此字符串的副本,其第一个字符替换为指定的 transform 的结果,如果为空,则返回原始字符串。

例子:

import java.util.Locale
import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
println("kotlin".replaceFirstChar { it.uppercase() }) // Kotlin

val sentence = "Welcome to Kotlin!"
val words = sentence.split(' ');
println(words.joinToString(separator = "_") { word -> word.replaceFirstChar { it.lowercase() } }) // welcome_to_kotlin!
//sampleEnd
}

输出:

Kotlin
welcome_to_kotlin!

参数

transform- 获取第一个字符并返回应用于该字符的转换结果的函数。