How to remove spaces from a string using while if or for/

8 visualizaciones (últimos 30 días)
Ervin DeBoy
Ervin DeBoy el 19 de Oct. de 2020
Comentada: Ameer Hamza el 19 de Oct. de 2020
Need to use for if or while , finding the length will probably help initiate the loop , but how to remove spaces its complicated
c = 'that is some tick stuf f f'
l = length(c)
for a = 0:l
if c == ' '
c==''
end;
disp(c)

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 19 de Oct. de 2020
It is important that you traverse the string from the end toward the beginning.
c = 'that is some tick stuf f f';
l = numel(c);
for a = l:-1:1
if c(a) == ' '
c(a) = [];
end
end
disp(c)

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by