gpt4 book ai didi

c# - 如何使用 DocX 库将文本正确导出到 Word

转载 作者:太空宇宙 更新时间:2023-11-03 13:17:19 28 4
gpt4 key购买 nike

我正在尝试简单地将一些文本从 C# 程序输出到新的 Word 文档,但我遇到了一个奇怪的问题:我的很多输出都是颠倒的。任何不以字母结尾的单词都会跳到句子的末尾。例如:

DocX doc= DocX.Create(filePath);
Paragraph p1 = template.InsertParagraph();
p1.AppendLine("This line contains a ").Append("bold").Bold().Append(" word.");
p1.AppendLine("Here is example with question mark?");
p1.AppendLine();
p1.AppendLine("Can you help me figure it out?");
p1.AppendLine();

Output of the code :

Output of the code

如您所见,以非字母结尾的句子变得困惑。我使用的是 2010 Office Word

最佳答案

试试看

Paragraph p1 = template.InsertParagraph();

用这个

Paragraph p1 = doc.InsertParagraph();

关于c# - 如何使用 DocX 库将文本正确导出到 Word,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25658606/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com