Answers for "kotlin element at index in string"

0

kotlin element at index in string

val hello = "Hello World"

    // Using get() function
    val W = hello.get(6)

    // Using indexing
    val e = hello[1]
Posted by: Guest on October-27-2020

Code answers related to "kotlin element at index in string"

Browse Popular Code Answers by Language