cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
file editing
file editing
May 30, 2015 at 11:37am UTC
arsalan khawaja
(3)
I opened the already existing file in it . I want make some changes in it . Ios append will write at end .. How to edit at middle of file how to approach at that certain position
Thanku
May 30, 2015 at 12:02pm UTC
obscure
(51)
Read this :
http://www.cplusplus.com/reference/istream/istream/seekg/
Also you can copy the whole text file to a string and insert whatever you want
inside it at any position or replace a substring with another..
http://www.cplusplus.com/reference/string/basic_string/insert/
http://www.cplusplus.com/reference/string/basic_string/replace/
May 31, 2015 at 11:19am UTC
arsalan khawaja
(3)
thankyou ... :)
Topic archived. No new replies allowed.