필터 지우기
필터 지우기

Read csv with quotes and numbers

조회 수: 6 (최근 30일)
AG15
AG15 2022년 9월 14일
답변: Chunru 2022년 9월 14일
Hi,
I have a csv file which contains the follwing format. Unfortunatelly it is not possible to remove the douuble quotes due to the method in which the data is generated. I am not able to parse out the data after the double quotes as the import data is treating it as a single field. Ideally I need to parse it as 1,10,10,A but it is not able to identify the delimiter in the double quotes.
data format:
1,"10,10,A"
4,"10,14,A"
15,"10,11,B"
Below is the readout when I try to import the data
What would you recommend? Thanks a lot!

채택된 답변

Chunru
Chunru 2022년 9월 14일
type data.txt
1,"10,10,A" 4,"10,14,A" 15,"10,11,B"
fid=fopen("data.txt", "r")
fid = 3
a=fscanf(fid, '%d,"%d,%d,%c"', [4 inf])'
a = 3×4
1 10 10 65 4 10 14 65 15 10 11 66
fclose(fid)
ans = 0

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by