Separate strings w.r.t to semicolon

8 ビュー (過去 30 日間)
shaz
shaz 2012 年 10 月 23 日
i have a string like below in one cell(one row & one column)
a;b;c;d;f;e;g;t;y;s
i would like to separate in to individual cells with reference as ;

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 10 月 23 日
x={'a;b;c;d;f;e;g;t;y;s'}
y=regexp(x,';','split')
y{:}

その他の回答 (1 件)

Sachin Ganjare
Sachin Ganjare 2012 年 10 月 23 日
str = 'a;b;c;d;f;e;g;t;y;s';
Out = strread(str,'%s','delimiter',';');
Hope it helps!!!
  2 件のコメント
Jan
Jan 2012 年 11 月 27 日
Unfortunately STRREAD is deprecated and will vanish in a future Matlab release. I cannot imagine, why removing such important functions is helpful for anything.
Walter Roberson
Walter Roberson 2012 年 11 月 27 日
Out = textscan(str, '%s', 'delimiter', ';');

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by