CodeCode code
CodeCode code

Reputation: 3

How to get current URL from web browser?

I'm looking for a way to get the current URL from web browsers such as Chrome, Firefox, or Matlab browser using Matlab code? It it possible to do it?

Upvotes: 0

Views: 375

Answers (1)

Wouter Kuijsters
Wouter Kuijsters

Reputation: 840

From the matlab web documentation:

[stat,h,url] = web() % returns the URL of the current page in the MATLAB Web browser.

Upvotes: 2

Related Questions