Is there an efficient method to remove leading underscores from a cell array of strings?
31 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ken Campbell
el 6 de Ag. de 2014
Comentada: Ken Campbell
el 6 de Ag. de 2014
Given
a={'rose','_tulip_blue','lilac','_daisy'}
is there an efficient way of stripping the leading underscores to give
b={'rose','tulip_blue','lilac','daisy'}
I tried
strtok(a,'_')
but that gives
b={'rose','tulip','lilac','daisy'}
and misses the '_blue'. I would like to avoid looping through the strings one at a time if possible.
0 comentarios
Respuesta aceptada
Más respuestas (1)
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!