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?

 Respuesta aceptada

Walter Roberson
Walter Roberson el 25 de Nov. de 2015

1 voto

S = '0231563972';
newS = regexprep(S, '(.)(?=.)', '$1 ');
or
newS = strjoin(num2cell(S),' ');

Más respuestas (0)

Etiquetas

Preguntada:

el 25 de Nov. de 2015

Respondida:

el 25 de Nov. de 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by