按樣式名稱(chēng)獲取段落
Spire.Doc for .NET是一款專(zhuān)門(mén)對(duì) Word 文檔進(jìn)行操作的 .NET 類(lèi)庫(kù)。在于幫助開(kāi)發(fā)人員無(wú)需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專(zhuān)業(yè)開(kāi)發(fā)經(jīng)驗(yàn)Spire系列辦公文檔開(kāi)發(fā)工具,專(zhuān)注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處理,小巧便捷。
E-iceblue 功能類(lèi)庫(kù)Spire 系列文檔處理組件均由中國(guó)本土團(tuán)隊(duì)研發(fā),不依賴(lài)第三方軟件,不受其他國(guó)家的技術(shù)或法律法規(guī)限制,同時(shí)適配國(guó)產(chǎn)操作系統(tǒng)如中科方德、中標(biāo)麒麟等,兼容國(guó)產(chǎn)文檔處理軟件 WPS(如 .wps/.et/.dps 等格式
Spire.Doc for.NET 最新下載
技術(shù)交流Q群(767755948)
通過(guò)使用Spire.Doc,您不僅可以檢索Word文檔中所有段落的樣式名稱(chēng),還可以獲取具有特定樣式名稱(chēng)的段落。這在您需要獲取標(biāo)題、標(biāo)題 1、副標(biāo)題等中的文本時(shí)尤其有用。
Word 中的段落樣式名稱(chēng) | Spire.Doc 中的段落樣式名稱(chēng) |
標(biāo)題 | 標(biāo)題 |
標(biāo)題 1 | 標(biāo)題1 |
標(biāo)題 2 | 標(biāo)題2 |
標(biāo)題 3 | 標(biāo)題3 |
標(biāo)題 4 | 標(biāo)題3 |
字幕 | 字幕 |
第 1 步:在初始化 Document 對(duì)象時(shí)加載示例 Word 文件。
Document doc = new Document("sample.docx");
第 2 步:瀏覽文檔中的節(jié)和段落,判斷段落樣式名稱(chēng)是否為“Heading1”,如果是,則將段落文本寫(xiě)在屏幕上。
foreach (Section section in doc.Sections) { foreach (Paragraph paragraph in section.Paragraphs) { if (paragraph.StyleName == "Heading1") { Console.WriteLine(paragraph.Text); } } }
輸出:
完整代碼:
[C#]
using Spire.Doc; using Spire.Doc.Documents; using System; namespace GetParagh { class Program { static void Main(string[] args) { Document doc = new Document("sample.docx"); foreach (Section section in doc.Sections) { foreach (Paragraph paragraph in section.Paragraphs) { if (paragraph.StyleName == "Heading1") { Console.WriteLine(paragraph.Text); } } } } } }
[VB.NET]
Imports Spire.Doc Imports Spire.Doc.Documents Namespace GetParagh Class Program Private Shared Sub Main(args As String()) Dim doc As New Document("sample.docx") For Each section As Section In doc.Sections For Each paragraph As Paragraph In section.Paragraphs If paragraph.StyleName = "Heading1" Then Console.WriteLine(paragraph.Text) End If Next Next End Sub End Class End Namespace
歡迎下載|體驗(yàn)更多E-iceblue產(chǎn)品
獲取更多信息請(qǐng)咨詢(xún)慧都在線客服 ;技術(shù)交流Q群(767755948)