Replacing One Character Issue
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Voss
el 3 de Mzo. de 2023
Editada: Voss
el 3 de Mzo. de 2023
"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 comentarios
Voss
el 3 de Mzo. de 2023
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.
Ver también
Categorías
Más información sobre Cell Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!