How do you get the length of a string in Kotlin? Select one: str.lengthOf length(str) str.length Adobe code example
Example: kotlin string length
val hello = "Hello World"
// Use .length to get length of string
val stringLength = hello.length