Filter löschen
Filter löschen

How to display a long string in multiple lines?

24 Ansichten (letzte 30 Tage)
Jing Ci Neo
Jing Ci Neo am 17 Sep. 2018
Kommentiert: giannit am 30 Mär. 2021
I have a cell called C containing many strings, of which some are very long and it's hard to view in one line. I want to be able to call these strings and print them but in multiple lines: str=C{n,1}; fprintf('%s\n',str)
How I would be able to do that? Any help would be greatly appreciated.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 17 Sep. 2018
PerLine = 80;
pattern = sprintf('.{1,%d}', PerLine);
str = regexp(C{n,1}, pattern, 'match');
fprintf('%s\n', str{:});
  2 Kommentare
Jing Ci Neo
Jing Ci Neo am 20 Sep. 2018
Yes it worked very well, thank you!
giannit
giannit am 30 Mär. 2021
Thank you i was looking for that!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by