使用 C# 在 Excel 中的单个单元格中分配多行

发布于 2024-08-24 20:40:00 字数 87 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮年慕年 2024-08-31 20:40:01

您可以在字符串中使用“\n”

Excel.Range dataRange= (Excel.Range)excelWorksheet.get_Range("C4", "C4");
dataRange.Value2 = "This is the first line\n" +
        "This is the second line\n" +          
        thirdLineString;

You can just use "\n" in the String

Excel.Range dataRange= (Excel.Range)excelWorksheet.get_Range("C4", "C4");
dataRange.Value2 = "This is the first line\n" +
        "This is the second line\n" +          
        thirdLineString;
夏尔 2024-08-31 20:40:01

取出所需的行并将它们放入一个数组中,然后将它们连接成一个字符串,并用换行符分隔:

String singleCell = String.Join("\n",lines)

然后将该字符串放入单元格中。

Take the lines you want and put them into an array, and then join them into a single string, split by the newline character:

String singleCell = String.Join("\n",lines)

and then drop that string into the cell.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文