How can I split a string?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
pamela sulis
il 25 Nov 2015
Risposto: Walter Roberson
il 25 Nov 2015
Hi, I have this string '0231563972' and i want to split it, put a space between the number: '0 2 3 1 5 6 3 9 7 2'. Can you give me suggestions?
0 Commenti
Risposta accettata
Walter Roberson
il 25 Nov 2015
S = '0231563972';
newS = regexprep(S, '(.)(?=.)', '$1 ');
or
newS = strjoin(num2cell(S),' ');
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!