Question #27280
In C++ ,using Borland, how can you extract data such as Account Number, Name and Balance, from a text file? Then edit that data and save it back to the file? There are several lines of data in the file, so how do you find and edit the one you want?
1
Expert's answer
2013-03-29T14:09:02-0400
First of all you must set attributes of lines, todetermine what line it is. It can be done in many ways, but two of them ispretty easy.1. Ini files. https://en.wikipedia.org/wiki/INI_file       Entry offile will be like                some_info...                Account=1247676745                Number=1558345                Name=John                More_info...2. xml files       Entry:                <params>                               <Account>                                               128676346                               </Account>                               <Number >                                               1558345                               </Number >                               <Name >                                               John                               </Name >                               Someother data                </params> To parse and edit such file you can opn them with readand write mode(https://www.cplusplus.com/doc/tutorial/files/)using ios::in | ios::out mode.Or use this thing for c++https://www.codeproject.com/Articles/17353/XML-Application-Profile-Class

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!
LATEST TUTORIALS
APPROVED BY CLIENTS