Read from/write to txt file

6 visualizaciones (últimos 30 días)
Abdulrahman Odhah
Abdulrahman Odhah el 30 de Mayo de 2020
Comentada: Abdulrahman Odhah el 30 de Mayo de 2020
I am working on small project, part of it is quit away from my field, and I don't know if I can do it with matlab.
this part is related to dealing with txt files
it is simply reading line by line from the attached file q1.txt and printing the 1st line on screen, then writing the response of the user will be either a number or group of letters such as 100 , yes, no, up , down
and based on the response the program is supposed to show certain infromatino from the secnod txt file a1.
is there any way to achive that using matlab?

Respuesta aceptada

Image Analyst
Image Analyst el 30 de Mayo de 2020
Editada: Image Analyst el 30 de Mayo de 2020
Try this:
promptMessage = sprintf('Select your text file on the next dialog box.');
titleBarCaption = 'Continue?';
buttonText = questdlg(promptMessage, titleBarCaption, 'OK', 'Cancel', 'OK');
if contains(buttonText, 'Cancel', 'IgnoreCase', true)
return;
end
% Have user browse for a file, from a specified "starting folder."
% For convenience in browsing, set a starting folder from which to browse.
startingFolder = pwd; % or 'C:\wherever';
if ~isfolder(startingFolder)
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.txt');
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)
% Open the file for reading in text mode.
fileID = fopen(fullFileName, 'rt');
% Read the first line of the file.
textLine = fgetl(fileID);
lineCounter = 1;
while ischar(textLine)
userPrompt = sprintf('%s (type only Enter to quit now): ', strtrim(textLine));
userResponse = input(userPrompt, 's');
% Bail out if they just typed Enter.
if isempty(userResponse)
break;
end
% Print out user's response.
fprintf('You entered %s.\n', userResponse);
% Read the next line.
textLine = fgetl(fileID);
lineCounter = lineCounter + 1;
end
% All done reading all lines, so close the file.
fclose(fileID);
  3 comentarios
Image Analyst
Image Analyst el 30 de Mayo de 2020
Index the variable with the loop counter
userResponse{lineCounter} = input(userPrompt, 's');
Abdulrahman Odhah
Abdulrahman Odhah el 30 de Mayo de 2020
Perfect, thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by