How to use matlab to input/output specific words into/from the specific webpage?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello, I am doing some online surveys. Instead of doing that manually and repetitively, I want to write a code to do that for me. To achieve that, I need to: 1. open the specific webpage (I think I can do that with "system" or "web" commands.); 2. fill some blanks with pre-defined words; 3. collect some useful data and store them in to the work-space. (The "urlread" command generates too much data. I only want to collect several specific numbers at the same position of the webpage each time.)
Can Matlab achieve that? If not, what kind of software should I use? Thanks in advance!
1 Kommentar
Sean de Wolski
am 31 Aug. 2016
If it's in the same position every time, then a regular expression should be able to capture it. Do you have a small example? If not, look at
doc regexp
Antworten (1)
Shruti Shivaramakrishnan
am 31 Aug. 2016
Currently, MATLAB has a function called "webread" apart from "urlread" that can be used to collect information from the webpages. The web service provides a RESTful API that returns data formatted as an internet media type such as JSON, XML, image, or text. You could parse through that information to collect the data needed. Refer to this link for more information on the "webread" command.
0 Kommentare
Siehe auch
Kategorien
Mehr zu JSON Format finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!