String split from the line .

1 回表示 (過去 30 日間)
Karanvir singh Sohal
Karanvir singh Sohal 2021 年 4 月 5 日
Hello!
I have strings stored in "myline" variable.
myline = ,A,B,C,D,E,F,G,H,I,J,K
I want to split the string at(,) and also wants to remove the empty space(" ",A) which is available before A.
Further I want to store these in variable "B".
B={'A';'B';'C';'D';'E';'F';'G';'H';'I''J';'K'}

採用された回答

Matt J
Matt J 2021 年 4 月 5 日
編集済み: Matt J 2021 年 4 月 5 日
As an example,
B=split( ',A,B,C,D' , ',');
B=B(~cellfun('isempty',B))
B = 4×1 cell array
{'A'} {'B'} {'C'} {'D'}
  3 件のコメント
Matt J
Matt J 2021 年 4 月 5 日
Add
B=B(~cellfun('isempty',B))
Karanvir singh Sohal
Karanvir singh Sohal 2021 年 4 月 5 日
Thanks @Matt J :)

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

その他の回答 (0 件)

カテゴリ

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