Modify Strings in cell array
古いコメントを表示
Hi,
I have a cell array:
b = { 'a/b/c/a'; 'k/b' ; 'c/c/d' }
I want to remove the string before the first slash.
The result should be:
b = { 'b/c/a'; 'b' ; 'c/d' }
How can I achieve the result?
1 件のコメント
Kevin Phung
2019 年 4 月 3 日
編集済み: Kevin Phung
2019 年 4 月 3 日
is this the same as removing just the first 2 characters?
採用された回答
その他の回答 (1 件)
カテゴリ
ヘルプ センター および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!