美文网首页
golang 生成excel字母表头

golang 生成excel字母表头

作者: 发条家的橙子 | 来源:发表于2021-12-15 13:01 被阅读0次

根据下标生成类似A-Z AA-AZ的excel表头

func main() {
    fmt.Println(getKey(0))
    fmt.Println(getKey(26))
    fmt.Println(getKey(45))
}

// 根据下标 获取 对应表头
func getKey(index int) string {
    colCode := ""
    key := 'A'
    loop := index / 26
    if loop > 0 {
        colCode += getKey(loop - 1)
    }
    return colCode + string(key+int32(index)%26)
}

相关文章

网友评论

      本文标题:golang 生成excel字母表头

      本文链接:https://www.haomeiwen.com/subject/qrtpfrtx.html