• Aspose.Words for .NET样式处理教程——如何根据样式提取内容


    Aspose.Words For .Net是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。此外,API支持所有流行的Word处理文件格式,并允许将Word文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。

    接下来我们将进入关于“样式处理”的介绍,在Aspose.Words中学会如何根据样式提取内容。


    如何根据样式提取内容

    简单地说,从Word文档中检索基于样式的内容对于识别、列出和计数段落以及使用特定样式格式化的文本非常有用。例如,可能需要识别文档中特定类型的内容,例如示例、标题、引用、关键字、图名和案例研究。

    同时,我们还可以用于利用由文档使用的样式定义的文档结构,将文档重新用于其他输出,例如HTML。实际上,这就是Aspose文档的构建方式,将Aspose.Words进行了测试。使用Aspose.Words构建的工具将获取源Word文档,并将其分为特定标题级别的主题。使用Aspose.Words生成XML文件,该文件用于构建左侧显示的导航树。然后,Aspose.Words将每个主题转换为HTML。

    使用Aspose.Words检索Word文档中以特定样式设置格式的文本的解决方案通常是经济且直接的。为了说明Aspose.Words如何轻松处理基于样式的内容,让我们看一个示例。在此示例中,我们将从示例Word文档中检索具有特定段落样式和字符样式格式的文本,这将涉及以下内容:

    • 使用Document类打开Word文档。文档中的所有段落和所有运行。
    • 仅选择所需的段落和运行。

    具体来说,将从此示例Word文档中检索以“标题1”段落样式和“强烈强调”字符样式设置格式的文本。在此示例中,使用“标题1”段落样式设置格式的文本是“插入标签”,“快速样式”和“主题”,使用“强烈强调”字体设置的文本是蓝色的几种实例,斜体,粗体文本,例如“画廊”和“整体外观”。

    在Aspose中,基于样式的查询的实现非常简单。word文档对象模型,因为它只是使用了已经存在的工具。这个解决方案实现了两个类方法:

    • hsbystylename——这个方法检索文档中具有特定样式名称的段落的数组。
    • RunsByStyleName—此方法检索文档中具有特定样式名称的运行的数组。

    这两种方法非常相似,唯一的区别是节点类型和段落和运行节点中样式信息的表示形式。下面是段落bystylename的一个实现:在下面的例子中找到所有使用指定格式的段落。

    1. // For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET
    2. public static ArrayList ParagraphsByStyleName(Document doc, string styleName)
    3. {
    4. // Create an array to collect paragraphs of the specified style.
    5. ArrayList paragraphsWithStyle = new ArrayList();
    6. // Get all paragraphs from the document.
    7. NodeCollection paragraphs = doc.GetChildNodes(NodeType.Paragraph, true);
    8. // Look through all paragraphs to find those with the specified style.
    9. foreach (Paragraph paragraph in paragraphs)
    10. {
    11. if (paragraph.ParagraphFormat.Style.Name == styleName)
    12. paragraphsWithStyle.Add(paragraph);
    13. }
    14. return paragraphsWithStyle;
    15. }

    还需要指出的是,段落集合不会立即产生开销,因为只有当访问段落中的项目时,段落才会被加载到该集合中。然后,我们需要做的就是使用标准的foreach运算符浏览集合,并将具有指定样式的段落添加到paragraphsWithStyle数组中。段落样式名称可以在Paragraph.ParagraphFormat 对象的Style.Name 属性中找到。 尽管我们使用NodeType.Run 检索运行节点,但RunsByStyleName的实现几乎相同。Run 对象的Font.Style 属性用于访问运行节点。下面的示例查找所有以指定样式设置格式的运行。

    1. // For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET
    2. public static ArrayList RunsByStyleName(Document doc, string styleName)
    3. {
    4. // Create an array to collect runs of the specified style.
    5. ArrayList runsWithStyle = new ArrayList();
    6. // Get all runs from the document.
    7. NodeCollection runs = doc.GetChildNodes(NodeType.Run, true);
    8. // Look through all runs to find those with the specified style.
    9. foreach (Run run in runs)
    10. {
    11. if (run.Font.Style.Name == styleName)
    12. runsWithStyle.Add(run);
    13. }
    14. return runsWithStyle;
    15. }

    在实现这两个查询时,您所需要做的就是传递一个文档对象并指定要检索的内容的样式名称:下面的示例将运行查询并显示结果。

    1. // For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET
    2. // The path to the documents directory.
    3. string dataDir = RunExamples.GetDataDir_WorkingWithStyles();
    4. string fileName = "TestFile.doc";
    5. // Open the document.
    6. Document doc = new Document(dataDir + fileName);
    7. // Define style names as they are specified in the Word document.
    8. const string paraStyle = "Heading 1";
    9. const string runStyle = "Intense Emphasis";
    10. // Collect paragraphs with defined styles.
    11. // Show the number of collected paragraphs and display the text of this paragraphs.
    12. ArrayList paragraphs = ParagraphsByStyleName(doc, paraStyle);
    13. Console.WriteLine(string.Format("Paragraphs with \"{0}\" styles ({1}):", paraStyle, paragraphs.Count));
    14. foreach (Paragraph paragraph in paragraphs)
    15. Console.Write(paragraph.ToString(SaveFormat.Text));
    16. // Collect runs with defined styles.
    17. // Show the number of collected runs and display the text of this runs.
    18. ArrayList runs = RunsByStyleName(doc, runStyle);
    19. Console.WriteLine(string.Format("\nRuns with \"{0}\" styles ({1}):", runStyle, runs.Count));
    20. foreach (Run run in runs)
    21. Console.WriteLine(run.Range.Text);

    最终结果

  • 相关阅读:
    2018HBCPC个人题解
    AM@微分中值定理
    MySQL 用户授权管理及白名单
    LeetCode Cookbook 数组习题(2)
    独立游戏笔记-002 unity -01
    sklearn MLP红酒分类
    云厂商 RDS MySQL 怎么选
    CFdiv2-Chip Move-(线性dp+状态枚举方式)
    使用Puppeteer进行数据抓取保存为JSON
    golang优雅退出
  • 原文地址:https://blog.csdn.net/m0_67129275/article/details/125619200