douqiao5552 2018-03-13 09:47
浏览 114
已采纳

如何将字符串转换为字符串数组

I am trying to convert a string ["211007@it_4","211008@it_4"], which is saved in MySQL database to an array of string to use it as an index value.

I can not find a good way to do this in Go.

  • 写回答

2条回答 默认 最新

  • 普通网友 2018-03-13 12:21
    关注

    Your input looks like a JSON array with string elements. If that is so, simply use the encoding/json package to unmarshal it into a []string variable.

    Example:

    s := `["211007@it_4","211008@it_4"]`
    var parts []string
    if err := json.Unmarshal([]byte(s), &parts); err != nil {
        fmt.Println(err)
    }
    fmt.Println("elements:", parts)
    

    Output (try it on the Go Playground):

    elements: [211007@it_4 211008@it_4]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?