MATLAB: How to get data from a website

Financial ToolboxgetdataMATLABwebread

Hi, I am trying to read financial data from pages like this one: https://www.investing.com/funds/bankinter-indice-america-fi-historical-data
I think it's not a RESTful site (probably uses javascript), so webread does not work here.
I have also tried urlfilter, but it misses the dates.
Is there an easy way to get that type of data into MATLAB? Thanks!

Best Answer

Thank Jalaj!
I followed the examples and found a quick way to do this:
url_string = ('https://www.investing.com/funds/bankinter-indice-america-fi-historical-data');
nr_table = 1;
out_table = getTableFromWeb_mod(url_string, nr_table);
The function getTableFromWeb_mod simplifies all the complexity of using regexp, multiple tables in the page, etc.
Related Question