Replace each characters of strings with '-'
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Suresh Dahal
el 10 de Ag. de 2017
Comentada: Jan
el 10 de Ag. de 2017
Hi, I want to replace all the characters of a string by '-', say, flowers will be like '-------'. Please tell me how am I supposed to do that. I am totally new to matlab. As a beginner I've done this so far.
%Select a word
B='skyyiy'
%input letter
c='y'
%stringlength
l=strlength(B)
%indices of letters occurring
d=strfind(B,c)
newStr=strrep(B,c,'-')
2 comentarios
Respuesta aceptada
KL
el 10 de Ag. de 2017
if you've no conditions but just to have the same length as the old string then maybe something like
>> B='skyyiy'
newStr = B;
newStr(1:end) = '-'
B =
'skyyiy'
newStr =
'------'
0 comentarios
Más respuestas (1)
Walter Roberson
el 10 de Ag. de 2017
regexprep(B, c, '-')
or
B(B==c) = '_';
Ver también
Categorías
Más información sobre Characters and Strings 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!