Replace each characters of strings with '-'
Afficher commentaires plus anciens
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 commentaires
KSSV
le 10 Août 2017
It is working fine right????_y_ is replaced by '_'....what you expect?
Suresh Dahal
le 10 Août 2017
Modifié(e) : Suresh Dahal
le 10 Août 2017
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 10 Août 2017
regexprep(B, c, '-')
or
B(B==c) = '_';
3 commentaires
Suresh Dahal
le 10 Août 2017
Walter Roberson
le 10 Août 2017
Modifié(e) : Jan
le 10 Août 2017
B(:) = '-';
Jan
le 10 Août 2017
+1 for the last comment.
Catégories
En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!