How to store users input in a file?

Let's say I made a input asking for the users name and age, and wanted to say his input to a .txt file, I already know how to do that but my issue is how to keep that stored data if the script was ran again.
my code to store the users name and age:
name = input('What is your name? ','s');
age = input('How old are you? ');
fid = fopen('data.txt','w');
fprintf(fid,'%s is %i years old\n',name,age);
fclose(fid);

Antworten (2)

Star Strider
Star Strider am 31 Mai 2024

0 Stimmen

If you want to read the file, try something like this —
% name = input('What is your name? ','s');
% age = input('How old are you? ');
name = 'Rumpelstiltskin';
age = 142;
fid = fopen('data.txt','w');
fprintf(fid,'%s is %d years old\n',name,age);
fclose(fid);
type('data.txt')
Rumpelstiltskin is 142 years old
fid = fopen('data.txt','rt');
out = textscan(fid,'%s is %d years old\n');
fclose(fid);
out{1}
ans = 1x1 cell array
{'Rumpelstiltskin'}
out{2}
ans = int32 142
.

2 Kommentare

Elsayed
Elsayed am 31 Mai 2024
But this does basically what my code does? What I wanted to do is to save the input of the user and when the code was ran again, it makes a new line and adds the new users name. My code works fine, but if I was to run it again it would remove the data that was there.
Star Strider
Star Strider am 31 Mai 2024
I was not sure what you were asking.
One option would be to overwrite the file, and another would be to append to it.

Melden Sie sich an, um zu kommentieren.

Steven Lord
Steven Lord am 31 Mai 2024

0 Stimmen

You want to open the file not in write mode ('w') but in append mode ('a'). See the description of the permission input argument on the documentation page for the fopen function. Since you're writing text data to the file you probably also want to add 't' to write in text mode, so 'at' instead of 'w'.
cd(tempdir)
fid = fopen('myfile.txt', 'wt'); % open for writing
fprintf(fid, "Hello world!\n");
fclose(fid);
type myfile.txt
Hello world!
fid = fopen('myfile.txt', 'at'); % open for appending
fprintf(fid, "This is a second line.\n");
fclose(fid);
type myfile.txt
Hello world! This is a second line.
fid = fopen('myfile.txt', 'wt'); % open for writing, discarding the existing contents
fprintf(fid, "Is this the third line? Guess not.");
fclose(fid);
type myfile.txt
Is this the third line? Guess not.

1 Kommentar

Elsayed
Elsayed am 31 Mai 2024
oh alright, thanks a lot steven, I get how it works now.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Programming finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2023b

Tags

Gefragt:

am 31 Mai 2024

Kommentiert:

am 31 Mai 2024

Community Treasure Hunt

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

Start Hunting!

Translated by