Is a url valid
7 次查看(过去 30 天)
显示 更早的评论
Hello,
I'd like to know if a url is valid or not.
For example :
- http://www.fkhzfziufhzoij.com is not valid
- http://www.mathworks.fr is valid
Do you think it's possible ? thank you
0 个评论
采纳的回答
Geoff Hayes
2014-7-28
The documentation for urlread indicates that you could use the status output variable to indicate if the operation is successful or not.
For your two examples,
[str,status] = urlread('http://www.fkhzfziufhzoij.com');
returns an empty str and status==0.
Whereas,
[str,status] = urlread('http://www.mathworks.fr');
returns the HTML for the page in str and status==1.
3 个评论
Geoff Hayes
2014-7-29
Are you copying the lines of code exactly as above? What does str return for each? If you paste just the URL into your internet browser, what happens?
Image Analyst
2014-7-29
I get the same results as Geoff. Can you see anything in your web browser? Maybe it's some firewall issue???
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Scope Variables and Generate Names 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!