在 C# 中将 Excel 工作表提取为字符串
如何使用 C# 将 Excel 工作表提取到字符串中? 我已经有了该表,可以另存为 txt 文件,但不是那样 我想直接将其提取成字符串并进行一些处理。
How can i extract excel worksheet into a string using C#?
i already have the sheet and can save as txt file but instead of that
I want to extract it into a string directly and do some processing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用出色的 EPPlus 库,它允许您加载电子表格并访问所有单元格以编程方式。
下面是一些例子:
Try using a brilliant EPPlus library which allows you to load the spreadsheet and access all cells programatically.
Here's a few examples:
类似以下(未经测试)的代码应该可以工作:
尽管查看此示例以了解如何清理正确地安排一切等等。
Something like the following (untested) code should work:
Though look at this sample to see how to clean up everything properly etc.