我正在尝试写一个函数,写一个字符串数组,以便在围棋中使用Excelize。我的问题是:如何使用行号和列号来处理单元格,而不是使用"A1“类型的语法作为"axis”参数?
// Writes the header of the file:
xlfile.SetCellValue("Sheet1", "A1", "1")
// Instead of "A1", I would like to use row number and col number as parameters发布于 2019-05-10 13:06:02
CoordinatesToCellName将X,Y坐标转换为字母数字单元格名称或返回错误。
https://stackoverflow.com/questions/55743188
复制相似问题