Filter a cell array with words
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
AA
el 28 de Jul. de 2019
Respondida: Walter Roberson
el 28 de Jul. de 2019
Hi,
assume you have the cell array{1,1} with a text called "XXXX-adsaads". I want the the portion -adsaads to be removed so that I only get XXXX. How can I do this?
2 comentarios
Walter Roberson
el 28 de Jul. de 2019
Is the "adsaads" known ahead of time? Or are you wanting to find the part before the first - ? or are you wanting to find the part before the last - in cases where there are multiple - ?
Respuesta aceptada
Walter Roberson
el 28 de Jul. de 2019
trimedcell = regexprep(YourCellArray, '-.*', '', 'once');
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Cell Arrays 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!