Display string line by line

str = {'cats', 'dogs', 'birds'};
how to display the above string in command window as
cats
dogs
birds

 Accepted Answer

Use fprintf
str = {'cats', 'dogs', 'birds'};
fprintf('%s\n',str{:})
cats dogs birds
.

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!