segregating a text
Ältere Kommentare anzeigen
I have a char array where the content is mainly simila to this format 'JPM/GS/UBS-INV-BANK'
is it possible to separate the names where the separator "/" would be used to separate the names to obtain : JPM then GS then UBS-INV-BANK
Akzeptierte Antwort
Weitere Antworten (1)
Fangjun Jiang
am 28 Jun. 2011
0 Stimmen
strread('JPM/GS/UBS-INV-BANK','%s','delimiter','/')
1 Kommentar
Walter Roberson
am 28 Jun. 2011
or textscan() with the same parameters.
Kategorien
Mehr zu Text Analytics Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!