docx_to_text 1.0.1 copy "docx_to_text: ^1.0.1" to clipboard
docx_to_text: ^1.0.1 copied to clipboard

A small Dart package for converting docx files (Microsoft Word) to string.

This is a small package that allows you to retrieve text (text only) from .docx files (Microsoft Word).

Thanks SnowLukin

Usage #

import 'package:docx_to_text/docx_to_text.dart';

final file = File('path/to/file.docx');
final bytes = await file.readAsBytes();
final text = docxToText(bytes);

Additional information #

If there is anything you want to improve or fix, pool requesters are welcome.

15
likes
140
pub points
87%
popularity

Publisher

unverified uploader

A small Dart package for converting docx files (Microsoft Word) to string.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

archive, xml

More

Packages that depend on docx_to_text