#text-document #extract #format #docx #coming-soon #word #readable

dotext_ed8fc7b

Simple Rust library to extract readable text from specific document format like Word Document (docx). Currently only support several format, other format coming soon.

1 unstable release

Uses old Rust 2015

0.1.2 Dec 5, 2022

#9 in #docx

41 downloads per month
Used in textract

MIT license

1.5MB
540 lines

Document File Text Extractor

Build Status Build status Crates.io

Simple Rust library to extract readable text from specific document format like Word Document (docx). Currently only support several format, other format coming soon.

Supported Document

  • Microsoft Word (docx)
  • Microsoft Excel (xlsx)
  • Microsoft Power Point (pptx)
  • OpenOffice Writer (odt)
  • OpenOffice Spreadsheet (ods)
  • OpenDocument Presentation (odp)
  • PDF

Usage

let mut file = Docx::open("samples/sample.docx").unwrap();
let mut isi = String::new();
let _ = file.read_to_string(&mut isi);
println!("CONTENT:");
println!("----------BEGIN----------");
println!("{}", isi);
println!("----------EOF----------");

Test

$ cargo test

or run example:

$ cargo run --example readdocx data/sample.docx

[] Robin Sy.

Dependencies

~9.5MB
~244K SLoC