Splitting the elements in the cell array
20 ビュー (過去 30 日間)
古いコメントを表示
Gopalakrishnan venkatesan
2016 年 10 月 28 日
編集済み: Gopalakrishnan venkatesan
2018 年 12 月 18 日
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 件のコメント
採用された回答
Jan
2016 年 10 月 28 日
While this does not match the shown output, it matches your explanations:
a = {'abcdsfa_def', 'ef_ghi', 'higdsfasfa_klm'}
r = strtok(a, '_')
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!