how to reverse a string using a FOR loop

12 visualizaciones (últimos 30 días)
Kathrin Chari
Kathrin Chari el 14 de Dic. de 2019
Editada: Ridwan Alam el 14 de Dic. de 2019
How to reverse a string without using functions like fliplr,flip etc.

Respuesta aceptada

Ridwan Alam
Ridwan Alam el 14 de Dic. de 2019
Editada: Ridwan Alam el 14 de Dic. de 2019
Update:
myString = "abcdefg";
myChar = char(myString);
% using array indexing
myNewStr = string(myChar(end:-1:1));
% using FOR loop:
myNewChar = [];
for i = 1:length(myChar)
myNewChar = [myNewChar,myChar(end-i+1)];
end
myNewStr = string(myNewChar);
% myNewStr =
% "gfedcba"

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements 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!

Translated by