How to use matlab to input/output specific words into/from the specific webpage?

3 views (last 30 days)
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 Comment
Sean de Wolski
Sean de Wolski on 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

Sign in to comment.

Answers (1)

Shruti Shivaramakrishnan
Shruti Shivaramakrishnan on 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.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!