Formatting read data from text files

%I am trying to display the text that is read in a formatted method instead of a single line
%Attached is the test files
clc
clear
Inputfile = fopen('Aarakocra.txt', 'r')
text_data =fscanf(Inputfile, "%s\n")

 Risposta accettata

text_data = fileread('Question.txt');
disp(text_data)
Hello I am trying to format this text- Is there anyway I can print the same format to the command window simply?

Più risposte (1)

txt=readlines('YourInputFile.txt'); % read text file as string array
fprintf('%s\n',txt) % dumpt to command window as is
However, if the only purpose is to have the text go across the screen, there's not even any reason to actually read it into memory...
type('YourInputFile.txt'); % echo a text file to command window verbatim

Prodotti

Release

R2022a

Richiesto:

il 4 Apr 2023

Risposto:

dpb
il 4 Apr 2023

Community Treasure Hunt

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

Start Hunting!

Translated by