How to read a Ms Word using MATLAB
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Greetings,
I wish to read the Microsoft Word using MATLAB. My filename is GAN_1901.txt. Below is the Ms Word to read by MATLAB.

0 commentaires
Réponses (1)
TARUN
le 5 Fév 2025 à 7:06
Hi Khairul,
You can achieve this using “actxserver” function in MATLAB. Here is an example code of how you might read the text from a Word document:
wordApp = actxserver('Word.Application');
filePath = 'C:\path\to\your\document.docx'; % path to your GAN_1901.txt file
document = wordApp.Documents.Open(filePath);
content = document.Content.Text; %reads the text from file.
disp(content);
document.Close;
wordApp.Quit;
Feel free to refer to the “actxserver” documentation here:
0 commentaires
Voir également
Catégories
En savoir plus sur Text Files dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!