segregating a text
古いコメントを表示
I have a char array where the content is mainly simila to this format 'JPM/GS/UBS-INV-BANK'
is it possible to separate the names where the separator "/" would be used to separate the names to obtain : JPM then GS then UBS-INV-BANK
採用された回答
その他の回答 (1 件)
Fangjun Jiang
2011 年 6 月 28 日
0 投票
strread('JPM/GS/UBS-INV-BANK','%s','delimiter','/')
1 件のコメント
Walter Roberson
2011 年 6 月 28 日
or textscan() with the same parameters.
カテゴリ
ヘルプ センター および File Exchange で Text Analytics Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!