Printing an embedded newline character in a string using fprintf

13 visualizaciones (últimos 30 días)
Frankie Camacho
Frankie Camacho el 21 de Sept. de 2021
Editada: Jan el 21 de Sept. de 2021
I have a string that I would like to print using fprintf, but I want to embed a newline character in the string as part of the argument. Here is the output to the below code:
mystring =
"This is my string.\nIt is too long so I use newline\ncharacters to print on the next line."
This is my string.\nIt is too long so I use newline\ncharacters to print on the next line.
mystring = "This is my string.\nIt is too long so I use newline\ncharacters to print on the next line.";
fprintf('%s',mystring);

Respuestas (1)

Jan
Jan el 21 de Sept. de 2021
Editada: Jan el 21 de Sept. de 2021
mystring = "This is my string.\nIt is too long so I use newline\ncharacters to print on the next line.";
fprintf(mystring);
This is my string. It is too long so I use newline characters to print on the next line.
Or:
mystring = "This is my string.\nIt is too long so I use newline\ncharacters to print on the next line.";
str = sprintf(mystring);
fprintf('%s', str)
This is my string. It is too long so I use newline characters to print on the next line.

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by