Recent | Popular
#replace #stringconversion #ignorecase
"Good night".replace("night", "day") // "Good day" // some with ignoreCase "Good night".replace("night", "day", true) // true mean ignoreCase=true
#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"
Sun Nov 03 2024 22:04:58 GMT+0000 (Coordinated Universal Time)
Sun Nov 03 2024 21:59:37 GMT+0000 (Coordinated Universal Time)