data points
Evolution of my rank
| Time Recorded (time1549) | Data (data1549) |
|---|---|
| 24 May 2013 08:00:25 | [8 14119] |
| 23 May 2013 08:00:25 | [8 14077] |
| 22 May 2013 08:00:25 | [8 14043] |
| 21 May 2013 08:00:27 | [8 14010] |
| 20 May 2013 08:00:27 | [8 13975] |
url = 'http://www.mathworks.com/matlabcentral/cody/players/2391181-aurelien-queffurust';
% myrank = urlfilter(url, 'Rank','backward')
% new code after badges appear :
ZZ=urlread(url);
index = strfind(ZZ,'</span>Rank</div>');
ZZ2= ZZ( index-5:index-1);
ZZ3 = regexp(ZZ2,'>','split');
myrank = str2double(ZZ3{2})
% nb players
url2 = 'http://www.mathworks.com/matlabcentral/cody/players?page=1';
tgt = '50 of';
myNumber = urlfilter( url2, tgt, 1, 'forward')
wow =[myrank myNumber(1)]
updatetrend(wow);
0 comments