GroupDocs.Parser allows to extract text from PDF, Emails, Ebooks, Microsoft Office formats: Word (DOC, DOCX), PowerPoint (PPT, PPTX), Excel (XLS, XLSX), LibreOffice formats and many others (see full list at supported document formats article).
GroupDocs.Parser’s text extractor is easy to use and powerful at the same time (to resolve complex scenarios see advanced usage section).
This article demonstrates how to implement the simplest scenario - extract text from any supported format without additional settings.
Extract text from documents
To extract text from documents simply call the getText method:
TextReadergetText();
This method returns an instance of TextReader class with an extracted text.
Check if reader isn’t null (text extraction is supported for the document);
Read a text from reader.
The following example shows how to extract a text from a document:
// Create an instance of Parser class
try(Parserparser=newParser(Constants.SamplePdf)){// Extract a text into the reader
try(TextReaderreader=parser.getText()){// Print a text from the document
// If text extraction isn't supported, a reader is null
System.out.println(reader==null?"Text extraction isn't supported":reader.readToEnd());}}
More resources
Advanced usage topics
To learn more about document data extraction features and get familiar how to extract text, images, forms and more, please refer to the advanced usage section.
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples: