フィルターのクリア

How to covert a cell to multiple line string?

13 ビュー (過去 30 日間)
Sundeepan
Sundeepan 2016 年 9 月 26 日
編集済み: Sundeepan 2016 年 9 月 26 日
I have a cell with one coloumn and varing number of rows. The cell contains alpha-numeric string. I want to convert this cell into a multiple line string with each cell content as one line of the string.
How can this be acheived ?
  1 件のコメント
Jan
Jan 2016 年 9 月 26 日
Cells are arrays. Therefore all columns have the same number of rows. I assume, the contents of the cell elements are char vectors with a different number of clumns.

サインインしてコメントする。

採用された回答

Jan
Jan 2016 年 9 月 26 日
If you use CHAR you get a CHAR matrix padded with blanks on the right side. You can get "multi-line" also by inserting line breaks:
CellString = {'some'; 'strings'; 'to'; 'convert'; 'to'; 'a'; 'char'; 'array'}
CharString = sprintf('%s\n', CellString{:});
  1 件のコメント
Sundeepan
Sundeepan 2016 年 9 月 26 日
編集済み: Sundeepan 2016 年 9 月 26 日
Thanks Guillaume & Jan for the solution. I tried out both the solutions suggested and find adding line breaks more effective.
The reason to change the cell content to multiline string was to define the model properties for a Simulink model(multiple m files).

サインインしてコメントする。

その他の回答 (1 件)

Guillaume
Guillaume 2016 年 9 月 26 日
Use char:
cellarrayofstring = {'some'; 'strings'; 'to'; 'convert'; 'to'; 'a'; 'char'; 'array'}
chararrayofstring = char(cellarrayofstring)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by