如何在另一个字符串中删除所有出现的字符串?我可以使用下面的代码:
std.array.replace: "the string".replace("the", "")
但我想知道火卫一是否有专门的功能?
是。这是正确的函数。但是你可能想从std.string
中使用它。因为如果在未来的版本中有一些变化,你仍然可以使用正确的功能。
摘自std.string
的文档:
下列函数是公开导入的:
std.array
:replace
replaceInPlace
…