Is there an efficient method to remove leading underscores from a cell array of strings?
Mostra commenti meno recenti
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.
Risposta accettata
Più risposte (1)
AJ von Alt
il 6 Ago 2014
b = regexprep(a,'^_','','emptymatch')
1 Commento
Ken Campbell
il 6 Ago 2014
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!