substring kotlin code example
Example 1: kotlin substring
val name = "James Smith"
// Get just 'James' with subSequence()
val james = name.subSequence(0, 5)
// First argument is inclusive
// Second argument is exclusive
Example 2: kotlin substring in string
val name = "James Smith"
// contains() returns true if 'James is in
// string name and false otherwise
val isSubstring = name.contains("James")