replace the string a cell array with empty cell
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Gopalakrishnan venkatesan
el 7 de Mayo de 2015
Comentada: Iason Grigoratos
el 21 de Dic. de 2016
I have a cell array a = {'abc' ; 'def' ; 'ghi' ; 'def' ; 'xyz'}
I need to replace a 'def' with empty cell.
so my answer should be a = {'abc' ; '' ; 'ghi' ; '' ; 'xyz'}
How can i do this using cell function?
thank you
0 comentarios
Respuesta aceptada
Nobel Mondal
el 7 de Mayo de 2015
You may directly use the strrep function
a = strrep(a, 'def', '');
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings 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!