# docx_to_text **Repository Path**: DevalLee/docx_to_text ## Basic Information - **Project Name**: docx_to_text - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-06 - **Last Updated**: 2023-12-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is a small package that allows you to retrieve text (text only) from .docx files (Microsoft Word). Thanks [SnowLukin](https://github.com/SnowLukin) ## Usage ```dart 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.