Question about file

This is a discussion on Question about file within the C++ Programming forums, part of the General Programming Boards category; hi i have a file with this text in it : "hi , how are you? are you ok?" i ...

  1. #1
    Registered User
    Join Date
    Dec 2008
    Posts
    17

    Question about file

    hi
    i have a file with this text in it : "hi , how are you? are you ok?"
    i want add a word like TODAY after "are" without lose other words.

    how can do it?
    i do not want use temp file.
    Last edited by aminpost; 12-01-2009 at 10:11 AM.

  2. #2
    CSharpener vart's Avatar
    Join Date
    Oct 2006
    Location
    Rishon LeZion, Israel
    Posts
    5,636
    read contents of the file into string, modify string, write string back to file
    If I have eight hours for cutting wood, I spend six sharpening my axe.

  3. #3
    Registered User
    Join Date
    Dec 2008
    Posts
    17
    Quote Originally Posted by vart View Post
    read contents of the file into string, modify string, write string back to file
    how modify string?

  4. #4
    CSharpener vart's Avatar
    Join Date
    Oct 2006
    Location
    Rishon LeZion, Israel
    Posts
    5,636
    Code:
    std::string test = "a";
    
    test += "b";
    like this?
    If I have eight hours for cutting wood, I spend six sharpening my axe.

  5. #5
    Registered User hk_mp5kpdw's Avatar
    Join Date
    Jan 2002
    Location
    Northern Virginia/Washington DC Metropolitan Area
    Posts
    3,672
    Probably you'd want to use the insert member function to insert the word you wish to add to the string once you find where in the string the insert is to take place.
    I used to be an adventurer like you... then I took an arrow to the knee.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. A development process
    By Noir in forum C Programming
    Replies: 37
    Last Post: 07-10-2011, 10:39 PM
  2. help with text input
    By Alphawaves in forum C Programming
    Replies: 8
    Last Post: 04-08-2007, 04:54 PM
  3. Post...
    By maxorator in forum C++ Programming
    Replies: 12
    Last Post: 10-11-2005, 08:39 AM
  4. Encryption program
    By zeiffelz in forum C Programming
    Replies: 1
    Last Post: 06-15-2005, 03:39 AM
  5. Replies: 3
    Last Post: 03-04-2005, 01:46 PM

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21