Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
fun main() { val str = "c++ c php javascript rust kotlin" val words = str.split(" ") val lastWord = words.last() println("The length of the last word is: ${lastWord.length}") } /* run: The length of the last word is: 6 */