String.joinToString() ways of using

PHOTO EMBED

Sun Nov 03 2024 21:59:37 GMT+0000 (Coordinated Universal Time)

Saved by @Itra #jointostring #stringconversion

// 1 string glue
listOf("Good", "night").joinToString(" ")
// "Good night"

// 2 modify element in lambda and glue
listOf("Good", "night").joinToString(" ") { if (it == "night") "dreams" else it }
// "Good dreams"
content_copyCOPY