最佳答案
所以我有字符串“ Hello World!”还想换掉“ !”“ ?”所以新字符串是“ Hello World?”
在 Ruby 中,我们可以通过 gsub
方法很容易地做到这一点:
"Hello World!".gsub("!", "?")
在 Rust 中如何用惯用语做到这一点?