(web + urlread) empty page from google scholar

  • Follow


Hi all,

I am trying to query google scholar to retrieve the number of citation
of a paper.
As this is not part of their API, I am trying to get the returned
webpage and
look for some 'cited by N' however the page return is empty ... any
idea ?

clc
clear all
close all

strURL = 'http://scholar.google.com.sg/scholar?
hl=en&num=1&q=Bioprofiling+over+Grid+for+Healthcare';
[statusWeb] = web(strURL);
switch(statusWeb)
    case 0
        disp('Successful execution')
    case 1
        disp('the browser was not found')
    case 2
        disp('the browser was found, but could not be launched')
end

% the Web browser display the proper page with the wanted 'Cited by N'
% trying to get the page in a string ...

[strPage status] = urlread(strURL);

strPage is empty ??

any ideas ?

Brahim

0
Reply bhamadicharef668 (14) 3/11/2010 6:22:19 AM

Found a solution to my problem ...

Brahim


0
Reply Brahim 3/11/2010 12:43:45 PM


Brahim Hamadicharef <bhamadicharef@gmail.com> wrote in message <bf42667d-ca23-420e-bd3e-1e28bb3bcd1a@q2g2000pre.googlegroups.com>...
> Found a solution to my problem ...
> 
> Brahim
> 

Care to share?
:-)

Alon.
0
Reply Alon 5/2/2010 11:46:04 PM

2 Replies
207 Views

(page loaded in 0.061 seconds)

Similiar Articles:





7/30/2012 6:30:39 AM


Reply: