duanpacan9388 2019-05-02 18:25
浏览 226
已采纳

如何比较map [string] interface {}的值字符串

How to compare map[string]interface{} 's value string or not

m3 := map[string]interface{}{
"something":1,
"brawba":"Bawrbawr",
}

for key, value := range m3{
    if(reflect.TypeOf(value) == string or not){
        ... // here
    }else{
        ...
    }
}

https://play.golang.org/p/KjxMaGsMTOR

  • 写回答

1条回答 默认 最新

  • douchun5976 2019-05-02 18:41
    关注

    Use a type assertion to determine if the value is a string:

    for key, value := range m3 {
        if s, ok := value.(string); ok {
            fmt.Printf("%s is the string %q
    ", key, s)
        } else {
            fmt.Printf("%s is not a string
    ", key)
        }
    }
    

    Use reflect to determine if the value's base type string:

    type mystring string
    
    m3 := map[string]interface{}{
        "something": 1,
        "brawba":    "Bawrbawr",
        "foo":       mystring("bar"),
    }
    
    for key, value := range m3 {
        if reflect.ValueOf(value).Kind() == reflect.String {
            fmt.Printf("%s is a string with type %T and value %q
    ", key, value, value)
        } else {
            fmt.Printf("%s is not a string
    ", key)
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?