python – 从Kotlin中另一个字符串中出现的字符串中删除字符

让我先说一下我对Kotlin很新,但我对
Python有点熟悉.

我的目标是通过某种功能从另一个字符串中删除一个字符串中所有出现的字符.

我可以告诉你如何用Python做到这一点:

def removechars (s, chars)
    return s.translate(None, chars)

我可以像这样使用它:

print(removechars("The quick brown fox jumped over the sleazy dog!", "qot"))

它会给出这个输出:

The uick brwn fx jumped ver the sleazy dg!     

我怎么能在Kotlin做类似的事情?

最佳答案 我建议在Kotlin中使用
filterNot()

"Mississippi".filterNot { c -> "is".contains(c)}

这应输出“Mpp”.

点赞