count

inline fun CharSequence.count(): Int(source)

Returns the length of this char sequence.

Since Kotlin

1.0

inline fun CharSequence.count(predicate: (Char) -> Boolean): Int(source)

Returns the number of characters matching the given predicate.

Since Kotlin

1.0