kotlin.text.filterIndexed
filterIndexed
inline fun CharSequence.filterIndexed( predicate: (index: Int, Char) -> Boolean ): CharSequence
Returns a char sequence containing only those characters from the original char sequence that match the given predicate.
Parameters
predicate
- function that takes the index of a character and the character itself and returns the result of predicate evaluation on the character.