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'}

 Accepted Answer

Matt J
Matt J on 5 Apr 2021
Edited: Matt J on 5 Apr 2021
As an example,
B=split( ',A,B,C,D' , ',');
B=B(~cellfun('isempty',B))
B = 4×1 cell array
{'A'} {'B'} {'C'} {'D'}

3 Comments

There is empty space string before A ( ,A,B,C...)
How can I remove it.
Add
B=B(~cellfun('isempty',B))

Sign in to comment.

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!