使用 C# 在 Excel 中的单个单元格中分配多行
我正在使用 Windows 应用程序,并将数据表导出到 Excel 工作表中。就显示成功了。现在我想在一个单元格中包含多行。我怎样才能使用 C# 来做到这一点?
I am using a Windows application and I export a datatable into an Excel sheet. It displays successfully. Now I want to have multiple lines in a single cell. How can I do this by using C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在字符串中使用“\n”
You can just use "\n" in the String
取出所需的行并将它们放入一个数组中,然后将它们连接成一个字符串,并用换行符分隔:
然后将该字符串放入单元格中。
Take the lines you want and put them into an array, and then join them into a single string, split by the newline character:
and then drop that string into the cell.