我得到输出:
Hello World
Hello
使用以下代码:
package main
import(
"fmt"
"strings"
)
func main(){
s := "Hello World"
fmt.Println(strings.NewReplacer("Hello","").Replace(s))
fmt.Println(strings.NewReplacer("World","").Replace(s))
}
这是一个错误吗?有没有更好的方法来删除子字符串?