How to use matlab to input/output specific words into/from the specific webpage?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Sean de Wolski
el 31 de Ag. de 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
Respuestas (1)
Shruti Shivaramakrishnan
el 31 de Ag. de 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 comentarios
Ver también
Categorías
Más información sobre JSON Format en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!