How to join the elements of char array?

1 次查看(过去 30 天)
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.

回答(1 个)

Andrei Bobrov
Andrei Bobrov 2013-3-31
a=[61 62 63 64 65]
out = sprintf('%d',a)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by