How can I split a string?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
pamela sulis
el 25 de Nov. de 2015
Respondida: Walter Roberson
el 25 de Nov. de 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 comentarios
Respuesta aceptada
Walter Roberson
el 25 de Nov. de 2015
S = '0231563972';
newS = regexprep(S, '(.)(?=.)', '$1 ');
or
newS = strjoin(num2cell(S),' ');
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!