how to reverse a string using a FOR loop

5 次查看(过去 30 天)
How to reverse a string without using functions like fliplr,flip etc.

采纳的回答

Ridwan Alam
Ridwan Alam 2019-12-14
编辑:Ridwan Alam 2019-12-14
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"

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by