How to change the specified part of URL when I use MatLab's web function?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi All
I need to use Matlab to open the URL (<http://www.thisismoney.co.uk/money/saving/article-1583859/)>, however I want to change the part 1583859 within the URL.
So I set
Part='1583859';
web('http://www.thisismoney.co.uk/money/saving/article-',Part,'/')
But MatLab keeps telling me "The URL is not valid and cannot be loaded".
How can I fix it?
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 2월 4일
편집: Azzi Abdelmalek
2013년 2월 4일
Part='1583859'
web(['http://www.thisismoney.co.uk/money/saving/article-',Part,'/'])
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Web Services에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!