How to display a long string in multiple lines?

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.

 Respuesta aceptada

Walter Roberson
Walter Roberson el 17 de Sept. de 2018
PerLine = 80;
pattern = sprintf('.{1,%d}', PerLine);
str = regexp(C{n,1}, pattern, 'match');
fprintf('%s\n', str{:});

2 comentarios

Jing Ci Neo
Jing Ci Neo el 20 de Sept. de 2018
Yes it worked very well, thank you!
giannit
giannit el 30 de Mzo. de 2021
Thank you i was looking for that!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Centro de ayuda y File Exchange.

Productos

Versión

R2018a

Etiquetas

Preguntada:

el 17 de Sept. de 2018

Comentada:

el 30 de Mzo. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by