JSON Parser

버전 1.2.0.1 (2.4 KB) 작성자: Joel Feenstra
Parses JSON strings into structures and cells
다운로드 수: 19.3K
업데이트 날짜: 2016/9/1

라이선스 보기

This function parses JSON strings. It converts JSON arrays into cell arrays and JSON objects into structures.
This can be used with webervices that return JSON data such as the API provided by Google®.

An example of use is:
google_search = 'http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=matlab';
matlab_results = parse_json(urlread(google_search));
disp(matlab_results{1}.responseData.results{1}.titleNoFormatting)
disp(matlab_results{1}.responseData.results{1}.visibleUrl)

인용 양식

Joel Feenstra (2026). JSON Parser (https://kr.mathworks.com/matlabcentral/fileexchange/20565-json-parser), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2007b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
버전 게시됨 릴리스 정보
1.2.0.1

Updated license

1.2.0.0

Changed the description to properly reference Google®.

1.0.0.0