Answers for "kotlin part of string"

1

kotlin part of string

val name = "James Smith"
    
    // Get just 'James' with subSequence()
    val james = name.subSequence(0, 5)
    
    // First argument is inclusive
    // Second argument is exclusive
Posted by: Guest on October-27-2020

Browse Popular Code Answers by Language