how do i read just the header in a csv file and write them into a file
조회 수: 64 (최근 30일)
이전 댓글 표시
hi guys,
i have a csv file that i'd like to get a listing of all the headers, transposed into one column, and then write them out to a new file. so far what i've done is:
str = fileread('filename.csv')
index = strfind(str, '1');
header = str(1:(index-1));
and that gives me a character array with a single a row of all the fields in header seperated by commas, see below
header='field1,field2,field3,field4,field5'
what i need is a new file with the field names written as a column
field1
field2
field3
field4
field5
thanks for whatever help you can give!
Todd
댓글 수: 0
채택된 답변
Star Strider
2022년 7월 5일
One approach —
header='field1,field2,field3,field4,field5'
headerstring = string(strsplit(header,',')).'
.
댓글 수: 7
Star Strider
2022년 7월 5일
Thank you!
file1 = ["field1"
"field2"
"field3"
"field4"
"field5"];
file2 = ["field1"
"apples"
"bannans"
"field5"
"oranges"];
Lv = ismember(file1, file2) % Logical Vector
Result = file1(Lv)
... as desired!
You can also use ‘Lv’ here as the row (first) index to refer to multiple columns of the matrix, something like:
newDataExtract = newData(Lv,:)
if necessary.
.
추가 답변 (2개)
Adam Jurhs
2022년 7월 6일
댓글 수: 1
Star Strider
2022년 7월 6일
The ‘Lv’ vector indexes into the first argument of ismember. In the situation you describe, the first argument should be the longest vector, since that would correspond to the ‘Lv’ output.
I initially chose ismember because it appeared to be appropriate for the situation you describe. An alternative to experiment with, that may be closer to what you want, is the intersect function.
A = randi(9, 5, 1)
B = randi(9, 7, 1)
[C,ia,ib] = intersect(A,B)
Aia = A(ia)
Bib = B(ib)
The disadvantage of using intersect however is that it returns only the index of the first occurrence in each vector. If you expect only one match in each vector, that works. If there could be more than one match, and you want all of them, it won’t.
.
Adam Jurhs
2022년 7월 7일
편집: Adam Jurhs
2022년 7월 7일
댓글 수: 3
Star Strider
2022년 7월 7일
As always, my pleasure!
You just did! (Also by accepting my answer, for which I thank you!)
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!