kotlin part of string
snippet in kotlin
kotlin part of string
user5753
val name = "James Smith"
// Get just 'James' with subSequence()
val james = name.subSequence(0, 5)
// First argument is inclusive
// Second argument is exclusive