Split string with successive delimiters
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sushma sharma
am 21 Apr. 2017
Beantwortet: Walter Roberson
am 21 Apr. 2017
Hi,
I have a string, A = 'matlab,2016,b,,,'
I am trying to extract the characters between the commas using strsplit. however, at the end of the string there are no space between the comma delimiters, and they get grouped as one cell, instead of empty cell.
How can split the string, with the comma as the delimiter, and no space between successive delimiters being treated as a blank cell?
thanks!
s
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 21 Apr. 2017
>> A = 'matlab,2016,b,,,'
A =
'matlab,2016,b,,,'
>> regexp(A,',','split')
ans =
1×6 cell array
'matlab' '2016' 'b' '' '' ''
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!