converting cell array full of characters to a string

This is probably easy but I can't figure it out. I have a cell array where each entry is a character. I want to convert this cell array to a string because the characters in the cell array form a sentence. I tried char(array) which sort of works except it displays the string vertically instead of horizontally.

 Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 15 Dez. 2011
How about:
A = {'the';'quick';'brown';'fox'}
char(A)
or
char(cellfun(@transpose,A,'uni',false))
etc depending on how you want to convert it.

4 Kommentare

Alex
Alex am 15 Dez. 2011
This still seems to display it vertically instead of horizontally
The post transpose it:
char(cellfun(@transpose,A,'uni',false))'
Alex
Alex am 15 Dez. 2011
Thanks
Jan
Jan am 15 Dez. 2011
Or if the elements are scalar characters: cat(1, A{:})'

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by