Replacing One Character Issue
12 次查看(过去 30 天)
显示 更早的评论
picture = '% % %'
picture = strrep(picture,picture(1),'$')
I want to replace the 1st character with a $, but it replaces all the characters with a $. I think this is because all the characters are identical. How can I fix this without changing much of the program ?
0 个评论
回答(1 个)
Voss
2023-3-3
编辑:Voss
2023-3-3
"I want to replace the 1st character with a $"
picture = '% % %';
disp(picture)
picture(1) = '$';
disp(picture)
Note that that replaces the first character of picture with "$" regardless of what that character was (i.e., it does not replace the first character that's "%").
picture = 'c% % %';
disp(picture)
picture(1) = '$';
disp(picture)
5 个评论
Voss
2023-3-3
The difference is that one replaces the first character and one replaces the first '%'.
disp does no conversion.
disp displays to the command line, yes.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!