how to read .txt file having the following format.
3 ビュー (過去 30 日間)
表示 古いコメント
I have text file attached, how can I read it like a table in MATLAB?
[{"ID":1,"Column_A":"red","Column_B":"apple","Column_C":0},{"ID":2,"Column_A":"orange","Column_B":"orange","Column_C":1},{"ID":2,"Column_A":"green","Column_B":"grapes","Column_C":3},{"ID":3,"Column_A":"purple","Column_B":"onion","Column_C":4}]
0 件のコメント
回答 (3 件)
cr
2022 年 12 月 1 日
readtable(), importdata(), etc.
You may just drag and drop the file into workspace to launch importwizard. Make the appropriate settings and then choose generate code to see the underlying specifics.
Regards.
4 件のコメント
Star Strider
2022 年 12 月 1 日
C1 = readcell('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1214888/example.txt')
That will at least get it into your workspace.
.
0 件のコメント
Seth Furman
2022 年 12 月 7 日
fileContents = string(fileread("example.txt"))
jsonStruct = jsondecode(fileContents)
t = struct2table(jsonStruct)
t = convertvars(t,[2 3],"string")
0 件のコメント
参考
カテゴリ
Find more on Environment and Settings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!