Replacing One Character Issue
이전 댓글 표시
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 ?
답변 (1개)
"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
If you actually want to replace the first character that's "%" with "$", then:
picture = '% % %';
disp(picture)
idx = find(picture == '%', 1);
if ~isempty(idx)
picture(idx) = '$';
end
disp(picture)
picture = 'c% % %';
disp(picture)
idx = find(picture == '%', 1);
if ~isempty(idx)
picture(idx) = '$';
end
disp(picture)
Kimi Raikonnen
2023년 3월 3일
Kimi Raikonnen
2023년 3월 3일
Kimi Raikonnen
2023년 3월 3일
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.
카테고리
도움말 센터 및 File Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!