Extract text from Microsoft Office Word documents
Leave feedback
To extract a text from Microsoft Office Word documents getText and getText(int) methods are used. These methods allow to extract a text from the entire document or a text from the selected page. TextOptions parameter is ignored for Microsoft Office Words documents.
Here are the steps to extract a text from Microsoft Office Word document:
Instantiate Parser object for the initial document;
getText method returns null value if text extraction isn’t supported for the document. For example, text extraction isn’t supported for Zip archive. Therefore, for Zip archive getText method returns null. For empty Microsoft Office Word document getText method returns an empty TextReader object (readToEnd method returns an empty string).
The following example demonstrates how to extract a text from Microsoft Office Word document:
// Create an instance of Parser class
try(Parserparser=newParser(Constants.SampleDocx)){// Extract a text into the reader
try(TextReaderreader=parser.getText()){// Print a text from the document
System.out.println(reader.readToEnd());}}
Here are the steps to extract a text from the page of Microsoft Office Word document:
Instantiate Parser object for the initial document;
Text extraction from Microsoft Office Word document page is more resource consuming operation. Use text extraction from the entire document where it is applicable.
The following example demonstrates how to extract a text from the page of Microsoft Office Word document:
// Create an instance of Parser class
try(Parserparser=newParser(Constants.SampleDocxWithToc)){// Get the document info
IDocumentInfodocumentInfo=parser.getDocumentInfo();// Iterate over pages
for(intp=0;p<documentInfo.getPageCount();p++){// Print a page number
System.out.println(String.format("Page %d/%d",p+1,documentInfo.getPageCount()));// Extract a text into the reader
try(TextReaderreader=parser.getText(p)){// Print a text from the document
System.out.println(reader.readToEnd());}}}
GroupDocs.Parser also allows to extract a text from Microsoft Office Word documents as HTML, Markdown and formatted plain text. For more details, see Extract Formatted Text.
Here are the steps to extract a text from Microsoft Office Word document as HTML:
Instantiate Parser object for the initial document;
The following example shows how to extract a text from Microsoft Office Word document as HTML:
// Create an instance of Parser class
try(Parserparser=newParser(Constants.SampleDocx)){// Extract a formatted text into the reader
try(TextReaderreader=parser.getFormattedText(newFormattedTextOptions(FormattedTextMode.Html))){// Print a formatted text from the document
System.out.println(reader.readToEnd());}}
More resources
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to parse documents and extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online Free Online Document Parser App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.