how to delete rows that have string in file?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sonisa
el 12 de En. de 2016
Comentada: Sonisa
el 12 de En. de 2016
I want to delete the rows after the date. I tried using data(strcmp(data(:,1), 'END'), :) = [];. My data is 9*23 cell file. Can anyone tell me how to do in a loop?
'5/18/2015'
'END'
'ERROR(s) Encountered:'
''
'Check calibration'
'MVOR - Up or Down Sensor MilliVolt Over-Range value encountered!'
'Check gain adjustments or incident light conditions.'
''
'Check DLC DATE'
0 comentarios
Respuesta aceptada
Walter Roberson
el 12 de En. de 2016
data( find(strcmp(data(:,1), 'END'), 1, 'first'):end, :) = [];
0 comentarios
Más respuestas (1)
Sonisa
el 12 de En. de 2016
2 comentarios
Walter Roberson
el 12 de En. de 2016
It works fine for me on your sample data.
data = {'5/18/2015'
'END'
'ERROR(s) Encountered:'
''
'Check calibration'
'MVOR - Up or Down Sensor MilliVolt Over-Range value encountered!'
'Check gain adjustments or incident light conditions.'
''
'Check DLC DATE'
};
data( find(strcmp(data(:,1), 'END'), 1, 'first'):end, :) = [];
This leaves data as {'5/18/2015'}
Ver también
Categorías
Más información sobre Scope Variables and Generate Names 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!