How do I replace the last value in the output string to 'and *value*.' instead of ', *value*,'?

2 views (last 30 days)
How do I replace the last value in the output string to 'and *value*.' instead of ', *value*,'?
Any help is greatly appreciated!
Current output:
list: ... 53 (prime), 54, 55,
Desired output:
list: ... 53 (prime), 54 and 55.
Question mostly answered already below!

Accepted Answer

Image Analyst
Image Analyst on 3 Dec 2019
Try
for i = 1 : N
fprintf('%d', i);
if ismember(i, result)
fprintf(' (prime)');
end
if i < N
fprintf(', ');
else
fprintf('.\n');
end
end

More Answers (0)

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!