How to join the elements of char array?
Afficher commentaires plus anciens
I have an array with size not fixed depends on the inputs from the user. It is eg. 8X2 char array. I want to combine the array in 1 string.
eg. If it consists 61 62 63 64 65
I want a string of the form "6162636465"
Plz help as soon as possible.
Réponses (1)
Andrei Bobrov
le 31 Mar 2013
a=[61 62 63 64 65]
out = sprintf('%d',a)
3 commentaires
Kushal Khaitan
le 31 Mar 2013
Kushal Khaitan
le 31 Mar 2013
What is this out for you in the answer given by Andrei?
-> doc sprintf
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!