how to find specific string out of a list in an excel
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ihaveaquest
el 8 de Ag. de 2022
Editada: Ihaveaquest
el 9 de Ag. de 2022
file = read('file');
pattern = strcmp('9',file);
row = find(pattern==1);
writetable(row,'sampletable.txt')
2 comentarios
Walter Roberson
el 8 de Ag. de 2022
Are you starting with a .csv file or a .xlsx file?
Are there multiple columns in the file? Should only one column be examined for a match? Should the entire row with the match be output? Is it possible that multiple rows will match?
Respuesta aceptada
Walter Roberson
el 8 de Ag. de 2022
data = readtable('FileNameGoesHere');
mask = data{:,ColumnNumberGoesHere} == 9;
subset = data(mask,:);
writetable(subset, 'sampletable.txt');
2 comentarios
Image Analyst
el 8 de Ag. de 2022
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!