Binary string to character conversion
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello, If I have a string, S = 001000110111 Given:
a = 0
b = 10
c = 110
d = 111
I need to convert the string using that key.
So converted_S = aabaacd
How can I do this? Thanks.
0 commentaires
Réponse acceptée
Grzegorz Knor
le 20 Mar 2012
S = '001000110111';
a = '0';
b = '10';
c = '110';
d = '111';
S = strrep(S,d,'d');
S = strrep(S,c,'c');
S = strrep(S,b,'b');
S = strrep(S,a,'a')
5 commentaires
Grzegorz Knor
le 20 Mar 2012
regexp works correctly in this case :) strrep first looks for patterns, and then replace it.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!