How do I read Text from HTML file ?
조회 수: 61 (최근 30일)
이전 댓글 표시
I would like to know how is it possible to read only text from HTML file. I assume matlab reads the source code of the file due to which along with the actual text, it also reads the tags and other script related data. Please let me know how can this be solved.
댓글 수: 0
채택된 답변
Ned Gulley
2011년 2월 7일
Try something like this:
url = 'http://www.example.com/';
html = urlread(url);
% Use regular expressions to remove undesired markup.
txt = regexprep(html,'<script.*?/script>','');
txt = regexprep(txt,'<style.*?/style>','');
txt = regexprep(txt,'<.*?>','')
Once you have all the HTML, you can sift out the style and script blocks. Then remove any remaining tags and the result is reasonably clean. It won't be perfect, but it's easy to tune from here.
댓글 수: 2
Michael Lenihan
2011년 12월 1일
Hi Ned, thats some useful code. Im trying to get a number from HTML code rather than txt. Any ideas?
Walter Roberson
2011년 12월 1일
Same algorithm. You would use str2double() or sscanf() on the txt to convert to numeric form.
추가 답변 (2개)
moahaimen talib
2017년 10월 28일
hi i need to read just the email body how can i do that please
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!