How can I read an HTML file into MATLAB and discard the HTML tags?

I have an HTML file that I would like to read into MATLAB. However, I would like to discard the HTML tags and keep only the text from the file.

 Respuesta aceptada

There is no function available in MATLAB that will read HTML files and remove the HTML tags. However, this can easily be accomplished by using Regular Expressions:
str = '<HTML>My flowers <b>may</b> <A HREF=''<http://www.a.com'' http://www.a.com''>>bloom in</A> May</HTML>';
pat = '<[^>]*>';
regexprep(str, pat, '')
An alternative method without the use of Regular Expressions involves scanning the HTML file, replacing *"*BR" tags with newline characters, as well as removing other tags. The attached example, fread_html.m, demonstrates one possible solution that handles a subset of HTML tags.
An alternative method of saving an html file without HTML formatting tags is accomplished through the use of ActiveX. The following code calls Microsoft Internet Explorer as an ActiveX automation server, copies the text of the supplied URL and stores the text into a MATLAB variable.
function str=CopyPasteIE(url);
ha = actxserver('internetexplorer.application');
Navigate(ha, url);
pause(3); % Pause to let the page load
ha.document.execCommand('selectall','','');
ha.document.execCommand('copy','','');
str=clipboard('paste');
Example usage: mystr=CopyPasteIE('http://www.google.com');
Note: The code provided in this example is for demonstration purposes and has not been throughly tested.

5 comentarios

Sean de Wolski
Sean de Wolski el 17 de Oct. de 2017
Editada: Sean de Wolski el 17 de Oct. de 2017
This answer is outdated.
Many people would not have the Text Analytics Toolbox, which is new as of R2017b and appears to be extra cost. It is important to retain this existing solution.
I agree with Walter on this one. At least keep the old method for people who don't have the Text Analytics Toolbox. Removing the regexp method would imply to future readers that there is no compact method to do this without the toolbox. I don't have the toolbox, so I can't test performance, but I would guess they are not wildly different for most use cases.
You would probably use websave() or urlread()
You might need webread() with some carefully constructed headers to authenticate yourself.

Iniciar sesión para comentar.

Más respuestas (1)

Sean de Wolski
Sean de Wolski el 17 de Oct. de 2017
Editada: MathWorks Support Team el 19 de Mayo de 2023

1 comentario

That toolbox is new as of R2017b, and it also requires the Statistics and Machine Learning toolbox. If you already have the toolbox for other reasons then certainly use it, but if not then regexp() does fine.

Iniciar sesión para comentar.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by