猿问

strings.Replacer:位置相关的错误/功能?

我得到输出:


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))

}

这是一个错误吗?有没有更好的方法来删除子字符串?


大话西游666
浏览 201回答 2
2回答

慕容森

我不是围棋专家,但对我来说它看起来像是一个错误。这有效:package mainimport(    "fmt"    "strings")func main(){    s := "Hello World"    fmt.Println(strings.NewReplacer("Hello"," ").Replace(s))    fmt.Println(strings.NewReplacer("World","").Replace(s))}输出:   World Hello也许有一个空字符串关键字?即使这有效:fmt.Println(strings.NewReplacer("ello", "").Replace(s))这也有效:fmt.Println(strings.NewReplacer("Hello","", "Hi", "").Replace(s))正如 ortopteroid 所提到的,单次替换似乎是特殊情况和马车。
随时随地看视频慕课网APP

相关分类

Go
我要回答