英文:
How to read Excel sheet names in Go?
问题
我正在使用qax-os/excelize
来在Go中读取Excel文件。
有没有一种方法可以读取Excel文件中的工作表名称?
英文:
I am using qax-os/excelize
to read Excel files in Go.
Is there a way to read sheet names in an Excel file?
答案1
得分: 1
你可以在v2版本中使用以下链接:
https://pkg.go.dev/github.com/xuri/excelize/v2#File.GetSheetList
或者在v1和v2版本中使用以下链接:
https://pkg.go.dev/github.com/xuri/excelize#File.GetSheetMap
英文:
you can use in version v2:
https://pkg.go.dev/github.com/xuri/excelize/v2#File.GetSheetList
or in v1 and v2:
https://pkg.go.dev/github.com/xuri/excelize#File.GetSheetMap
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论