doushi1847 2014-04-11 07:35
浏览 27
已采纳

Golang-从结构数组中的值创建字符串

I have a an array of structs that each have an id and a title.

What is the most efficient way of creating a comma separated list of ids from this array.

eg

Struct A - id: 1, title: ....
Struct B - id: 2, title: ....
Struct C - id: 3, title: ....

Need a string "1,2,3"

  • 写回答

1条回答 默认 最新

  • dptrmt4366 2014-04-11 09:06
    关注

    Iterate the array and append to a buffer.

    package main
    
    import (
        "bytes"
        "fmt"
        "strconv"
    )
    
    type data struct {
        id   int
        name string
    }
    
    var dataCollection = [...]data{data{1, "A"}, data{2, "B"}, data{3, "C"}}
    
    func main() {
        var csv bytes.Buffer
        for index, strux := range dataCollection {
            csv.WriteString(strconv.Itoa(strux.id))
            if index < (len(dataCollection) - 1) {
                csv.WriteString(",")
            }
        }
        fmt.Printf("%s
    ", csv.String())
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 只改动本课件的 cal_portfolio_weight_series(decision_date), 跑完本课件。设计一个信息比率尽量高的策略。
  • ¥20 如何在visual studio 2022中添加ImageMagick库
  • ¥50 如何实现uniapp编译的微信小程序做可回溯视频
  • ¥15 求Houdini使用行家,付费。价格面议。
  • ¥15 前端高拍仪调用问题报错
  • ¥15 想用octave解决这个数学问题
  • ¥15 Centos新建的临时ip无法上网,如何解决?
  • ¥15 海康威视如何实现客户端软件对设备语音请求的处理。
  • ¥15 支付宝h5参数如何实现跳转
  • ¥15 MATLAB代码补全插值