douba8048 2017-02-06 18:00
浏览 2100
已采纳

在golang中将字符串转换为整数数组

I am looking for an answer in internet but it no one that fit my needs.

I have a string in the following format:

"[2,15,23]"

and i am trying to convert it in this format:

[2,15,23]

I need the type after the convertion to change to []int. I need to convert it because i want to use it later to make an interface type to use it in a sql query as param.

Is there any way to convert it?

Thanks

  • 写回答

3条回答 默认 最新

  • doubiao1734 2017-02-06 20:14
    关注

    A better way using json.Unmarshal:

    func main() {
        str := "[2,15,23]"
        var ints []int
        err := json.Unmarshal([]byte(str), &ints)
        if err != nil {
            log.Fatal(err)
        }
        fmt.Printf("%v", ints)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 三爪夹具,在重物的影响下,三爪受力怎么分析?能把三个爪当成螺栓吗?
  • ¥15 vs2022无法联网
  • ¥15 TCP的客户端和服务器的互联
  • ¥15 VB.NET操作免驱摄像头
  • ¥15 笔记本上移动热点开关状态查询
  • ¥85 类鸟群Boids——仿真鸟群避障的相关问题
  • ¥15 CFEDEM自带算例错误,如何解决?
  • ¥15 有没有会使用flac3d软件的家人
  • ¥20 360摄像头无法解绑使用,请教解绑当前账号绑定问题,
  • ¥15 docker实践项目