Read from/write to txt file

조회 수: 6 (최근 30일)
Abdulrahman Odhah
Abdulrahman Odhah 2020년 5월 30일
댓글: Abdulrahman Odhah 2020년 5월 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');
Abdulrahman Odhah
Abdulrahman Odhah 2020년 5월 30일
Perfect, thanks

댓글을 달려면 로그인하십시오.

추가 답변 (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