dongyao4419 2019-07-16 04:11
浏览 401
已采纳

用千位逗号golang格式化字符串格式

I have this string "1,090"

I want to convert it to float

v := "1,090"
s, err := strconv.ParseFloat(v, 32)
if  err != nil {
    fmt.Printf("err: %s
", err)
    return
}
fmt.Printf("%T, %v
", s, s)

But it returns an error:

//err: strconv.ParseFloat: parsing "1,090": invalid syntax

So anybody know to convert it to float?

  • 写回答

1条回答 默认 最新

  • doubijiao2094 2019-07-16 04:25
    关注

    The reason it is failed because "1,090" has , comma in it. You have to remove the , from the string before you use strconv.ParseFloat(v, 32). One way to remove comma is by using strings.Replace():

    v := "1,090"
    
    v = strings.Replace(v, ",", "", -1)
    
    s, err := strconv.ParseFloat(v, 32)
    if  err != nil {
            fmt.Printf("err: %s
    ", err)
            return
    }
    fmt.Printf("%T, %v
    ", s, s)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?