W3cubDocs

/Kotlin

lastIndexOfAny

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun CharSequence.lastIndexOfAny(
    chars: CharArray, 
    startIndex: Int = lastIndex, 
    ignoreCase: Boolean = false
): Int

Finds the index of the last occurrence of any of the specified chars in this char sequence, starting from the specified startIndex and optionally ignoring the case.

Parameters

startIndex - The index of character to start searching at. The search proceeds backward toward the beginning of the string.

ignoreCase - true to ignore character case when matching a character. By default false.

Return An index of the last occurrence of matched character from chars or -1 if none of chars are found.

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun CharSequence.lastIndexOfAny(
    strings: Collection<String>, 
    startIndex: Int = lastIndex, 
    ignoreCase: Boolean = false
): Int

Finds the index of the last occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case.

Parameters

startIndex - The index of character to start searching at. The search proceeds backward toward the beginning of the string.

ignoreCase - true to ignore character case when matching a string. By default false.

Return

An index of the last occurrence of matched string from strings or -1 if none of strings are found.

To avoid ambiguous results when strings in strings have characters in common, this method proceeds from the end toward the beginning of this string, and finds at each position the first element in strings that matches this string at that position.

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/last-index-of-any.html