update the text file
2 views (last 30 days)
Show older comments
i have only call the number from text file in edit text and if the number is change, it must be update at the give place in same text. there is any code to update the change value in same text after clicking the push bottom for given edit text box.
0 Comments
Answers (1)
Walter Roberson
on 30 May 2018
Updating text files is not recommended. It is only possible if the replacement is exactly the same size as the original text.
It is recommended that instead you write a new text file with the new content, and that you do not get rid of the old file until you are certain that the new one is correct.
2 Comments
Walter Roberson
on 30 May 2018
You can read from the old file, copying to a new file, except for the values you want changed, where you would write out the new value instead.
There is no possibility to just update part of a text file, except in the case where the new text is exactly the same size as the old text. This is not a MATLAB limitation: it is a fundamental restriction on all programs due to the way that text files are stored.
(Historically, there were a couple of operating systems that permitted text files to be stored in a way that permitted them to be updated, but the simplicity and efficiency of the current way of storing files won out in the early 80s.)
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!