Display long strings that include newlines in a table

17 次查看(过去 30 天)
I want to create and display a table in a live script. One of the colums is a string. In some cases, this string is very long, and the column is much wider than the viewable area of the script. I have inserted newlines in the string to insure there are no more than say N characters between each newline, but when I display the string in a table the cell containing the string contains only a single row of characters with a small character that looks like a carriage return at the location of each new line. Is there a way to display multi-line strings in a table?

采纳的回答

John Dzielski
John Dzielski 2023-12-4
The reason behind the question was that I want to display the information inside of a LiveScript in a "nicer" way that simply printing it out. It turns out that if you allow the live script to show the table (variable name not followed by a ';'), then hover the pointer over the cell containing the long text, the text will display the whole text in multi-line format. While this doesn't do exactly what I want, it is an acceptable solution.
Using disp() does not achieve this result when displaying a table. If the table is dipslayed from within a function call (table name w/o ';'), this also does not have the desired effect. The result of this is different from within the Live Script.

更多回答(1 个)

Matt J
Matt J 2023-12-1
编辑:Matt J 2023-12-1
I don't think there's a way. But you could write to an Excel file (e.g., with writetable) where multiline cells are possible.
>> s="aaa"+sprintf('\n')+"bb"
s =
"aaa
bb"
>> T=table(s)
T =
table
s
_________
"aaa↵bb"
>> writetable(T,'tst.xls')
  1 个评论
Matt J
Matt J 2023-12-1
编辑:Matt J 2023-12-1
There are also ways to use actxserver to open/close/maximize an Excel file from Matlab, if you wanted to use Excel as a surrogate display window.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by