GroupDocs.Parser pulls content out of documents — plain text, formatted text, images, metadata, hyperlinks, tables and barcodes — across PDF, Word, spreadsheets, presentations, email, ebooks and archives. It is the usual first step when feeding documents to a search index or a language model.
Extract text from a document
GetText returns a TextReader. It returns null rather than throwing when the format does not support text extraction, so check it.
usingSystem;usingSystem.IO;usingGroupDocs.Parser;using(Parserparser=newParser("contract.pdf")){using(TextReaderreader=parser.GetText()){if(reader==null){Console.WriteLine("Text extraction is not supported for this format.");}else{Console.WriteLine(reader.ReadToEnd());}}}
contract.pdf is the sample file used in this example. Click here to download it.
Consulting Services Agreement
Cascade Partners and Aldergrove Manufacturing
This agreement records the terms under which Cascade Partners will deliver the engagement
known internally as Project Northlight. It is issued by Dana Whitfield, Engagement Lead, and
countersigned by Marcus Oyelaran.
1. Scope of work
Cascade Partners will review the current order-to-cash process at Aldergrove Manufacturing,
identify the constraints limiting throughput, and deliver a prioritised remediation plan with an
[TRUNCATED]
Formatted extraction keeps the document’s structure — headings, lists, emphasis — instead of flattening it. Markdown is the format to ask for when the text is destined for a language model.
usingSystem;usingSystem.IO;usingGroupDocs.Parser;usingGroupDocs.Parser.Options;using(Parserparser=newParser("contract.docx")){using(TextReaderreader=parser.GetFormattedText(newFormattedTextOptions(FormattedTextMode.Markdown))){if(reader==null){Console.WriteLine("Formatted extraction is not supported for this format.");}else{File.WriteAllText("parser-extract-markdown.md",reader.ReadToEnd());}}}
contract.docx is the sample file used in this example. Click here to download it.
**Consulting Services Agreement**
Cascade Partners and Aldergrove Manufacturing
This agreement records the terms under which Cascade Partners will deliver the engagement known internally as Project Northlight. It is issued by Dana Whitfield, Engagement Lead, and countersigned by Marcus Oyelaran.
# **1. Scope of work**
Cascade Partners will review the current order-to-cash process at Aldergrove Manufacturing, identify the constraints limiting throughput, and deliver a prioritised remediation
[TRUNCATED]
Formatted extraction is not available for every format — PDF returns null from GetFormattedText, where plain GetText works fine. That is why the snippet checks the reader instead of assuming it. Word documents support Markdown, HTML and plain-text modes.
Read document information
GetDocumentInfo reports the page count and format before you commit to extracting anything.
GroupDocs.Parser also extracts images, hyperlinks, tables of contents and barcodes, parses structured data with user-defined templates, reads PDF form values, and reaches into email attachments and ZIP archives.