map
Returns a list containing the results of applying the given transform function to each character in the original char sequence.
Since Kotlin
1.0Samples
import java.util.Locale
import kotlin.test.*
fun main() {
//sampleStart
val string = "kotlin"
println(string.map { it.uppercaseChar() }) // [K, O, T, L, I, N]
//sampleEnd
}