Splitting the elements in the cell array
20 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Gopalakrishnan venkatesan
il 28 Ott 2016
Modificato: Gopalakrishnan venkatesan
il 18 Dic 2018
I have a cell array,
a = { abcdsfa_def , ef_ghi, higdsfasfa_klm}
Now i need to remove the each element in the cell array from '_'.
my answer should be a = {abcdsfa, ef, higdsfasfa}
Thanks a lot
1 Commento
Risposta accettata
Jan
il 28 Ott 2016
While this does not match the shown output, it matches your explanations:
a = {'abcdsfa_def', 'ef_ghi', 'higdsfasfa_klm'}
r = strtok(a, '_')
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Types in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!