How can I use strsplit, or something similar, in version 2012a?
Ältere Kommentare anzeigen
Is there a way to update my version of Matlab? I am using the student version 2012a which has been working fine up until I need to use strsplit. Alternately is there a way to do something similar in an older version?
Antworten (1)
Azzi Abdelmalek
am 15 Jun. 2016
Bearbeitet: Azzi Abdelmalek
am 15 Jun. 2016
a='abc def ghi'
b=regexp(a,'\s+','split')
Or
b=regexp(a,'\S+','match')
1 Kommentar
Kategorien
Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!