www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/DownloadWebContentRelatedtoaTermExample.m

    %% Download Web Content Related to Term  
% Download the HTML for the page on the MATLAB(R) Central File Exchange
% that lists submissions related to |urlread|.   

URL = 'http://www.mathworks.com/matlabcentral/fileexchange';
str = urlread(URL,'Get',{'term','urlread'}); 

%%
% |urlread| reads from http://www.mathworks.com/matlabcentral/fileexchange/?term=urlread
% and downloads the HTML content to the character vector |str|.