how do i read just the header in a csv file and write them into a file
38 ビュー (過去 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!