To filter characters in a String in Kotlin, use String. filter() method . Given a string str1 , and if we would like to filter the characters of this string using a predicate (some condition) predicate , call filter() method on string str1 and pass the predicate predicate as argument to the method as shown below.