textscan with formatted input data

조회 수: 1 (최근 30일)
Shawn Grooms
Shawn Grooms 2019년 10월 7일
편집: per isakson 2019년 10월 10일
I am trying to read an input csv data file with a lot of formatting, example below, and I need to pull it into MATLAB, even if it's in a rough state and needs additional post processing afterwards. The data is separated by commas however each data item is in quotations, and some items are in brackets as well. I've tried a variety of textscan data format options but they don't seem to be working. I have one header row as well, I replaced the header row here with just a generic statement. Any help is appreciated.
***Header Row
"154574","276:13:27:29.905(Bus_Monitor_Card4_core_0)","Type1","1","false","false","false","true","1","true","22","45056","28","276:13:27:29.904576","[64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","false","31","31","65535","31"
"154808","276:13:27:30.139(Bus_Monitor_Card4_core_0)","Type1","1","false","false","false","false","5","true","22","45056","26","276:13:27:29.940411","[16384, 0, 1, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","false","31","31","65535","31"
"154808","276:13:27:30.139(Bus_Monitor_Card4_core_0)","Type1","1","false","false","false","false","5","true","22","45056","26","276:13:27:29.990412","[16384, 0, 1, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","false","31","31","65535","31"
"154808","276:13:27:30.139(Bus_Monitor_Card4_core_0)","Type1","1","false","false","false","false","5","true","22","45056","26","276:13:27:30.040410","[16384, 0, 1, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","false","31","31","65535","31"
"154808","276:13:27:30.139(Bus_Monitor_Card4_core_0)","Type1","1","false","false","false","false","5","true","22","45056","26","276:13:27:30.090412","[16384, 0, 1, 259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","false","31","31","65535","31"
  댓글 수: 6
Stephen23
Stephen23 2019년 10월 7일
편집: per isakson 2019년 10월 10일
Star Strider's comment moved here:
The xlsread funciton has been supplanted by readmatrix in R2019a, and its use discouraged. However, I sometimes have problems getting readmatrix to import some Excel files correctly, and because not everyone may have readmatrix, I continue to use it in Answers. The xlsread function is still quite useful.
Stephen23
Stephen23 2019년 10월 7일
@Shawn Grooms: please use comments for commenting. Answers are for answering the original question.

댓글을 달려면 로그인하십시오.

답변 (1개)

Jeremy Hughes
Jeremy Hughes 2019년 10월 7일
This should be able to read this without much issue.
opts = detectImportOptions(filename)
T = readtable(filename,opts)

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by