Simple Rust library to extract readable text from specific document format like Word Document (docx). Currently only support several format, other format coming soon.
- Microsoft Word (docx)
- Microsoft Excel (xlsx)
- Microsoft Power Point (pptx)
- OpenOffice Writer (odt)
- OpenOffice Spreadsheet (ods)
- OpenDocument Presentation (odp)
letmut file = Docx::open("samples/sample.docx").unwrap();letmut isi = String::new();let _ = file.read_to_string(&mut isi);println!("CONTENT:");println!("----------BEGIN----------");println!("{}", isi);println!("----------EOF----------");$ cargo testor run example:
$ cargo run --example readdocx data/sample.docx[] Robin Sy.