F.Thomas
0
Q:

kotlin substring

val name = "James Smith"

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

New to Communities?

Join the community