how to reverse a string using a FOR loop
23 views (last 30 days)
Show older comments
How to reverse a string without using functions like fliplr,flip etc.
0 Comments
Accepted Answer
Ridwan Alam
on 14 Dec 2019
Edited: Ridwan Alam
on 14 Dec 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"
0 Comments
More Answers (0)
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!