如何删除另一个字符串中出现的所有字符串?我可以使用以下代码执行此操作:
std.array.replace: "the string".replace("the", "")
但我想知道在phobos中是否有专门的功能吗?
答案 0 :(得分:6)
是。这是正确的功能。但您可能希望从std.string
使用它。因为如果将来版本发生变化,您仍将使用正确的功能。
来自std.string
的文档:
以下功能是公开导入的:
std.array
:replace
replaceInPlace
...