Read from/write to txt file

6 次查看(过去 30 天)
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?

采纳的回答

Image Analyst
Image Analyst 2020-5-30
编辑:Image Analyst 2020-5-30
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 个评论
Image Analyst
Image Analyst 2020-5-30
Index the variable with the loop counter
userResponse{lineCounter} = input(userPrompt, 's');

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by