使用 C# 将 Word 文档划分为多个部分。获取设置开发环境的详细信息、编写应用程序的步骤列表以及使用 C# 将 Word 文档划分为多个部分的示例代码。您可以在将 Word 文档转换为单独的 Word 文件时筛选各个部分。
使用 C# 将 Word 文档分成几部分的步骤
- 设置环境以使用 Aspose.Words for .NET 将 Word 文档划分为多个部分
- 将 Word 文件加载到 Document 类对象中,用于拆分部分
- 遍历已加载的 Word 文件中的所有部分
- 通过克隆迭代中的当前部分来创建 Section 对象
- 创建一个新的空 Word 文件并清除其默认部分集合
- 将新部分导入空 Word 文件并使用新名称 save
- 对所有剩余部分重复此过程
这些步骤描述了如何使用 C# 将 Word 文档分成多个部分。加载 Word 文件,逐个克隆每个部分,并将其添加到新 Word 文件的节集合中。使用唯一文件名保存新创建的 Word 文件及其所选部分。
使用 C# 将 Word 文档分成几部分的代码
using Aspose.Words; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
License lic = new License(); | |
lic.SetLicense("license.lic"); | |
// Load the source Word document | |
Document doc = new Document("Sections.docx"); | |
// Iterate through all the sections | |
for (int iSectionCounter = 0; iSectionCounter < doc.Sections.Count; iSectionCounter++) | |
{ | |
// Clone the current section | |
Section section = doc.Sections[iSectionCounter].Clone(); | |
// Create a new empty Word document | |
Document newDoc = new Document(); | |
// Remove the default sections in the Word file | |
newDoc.Sections.Clear(); | |
// Import the section to the new document | |
Section newSection = (Section)newDoc.ImportNode(section, true); | |
newDoc.Sections.Add(newSection); | |
// Save the section as a separate Word file | |
newDoc.Save($"Word_Section_{iSectionCounter}.docx"); | |
} | |
} | |
} |
此代码演示了如何使用 C# 将 Word 文档分成几部分。您可以通过解析克隆部分的正文内容并检查 NodeType 属性来筛选部分。如果需要,您可以以其他各种格式保存输出的 Word 文件。
本文教我们如何将 Word 文件分成几部分并将其保存为单独的 Word 文件。如果您想删除 Word 文件中的所有分页符,请参阅 如何使用 C# 删除 Word 中的所有分页符 上的文章。