I am programming a simple IDE for python for my own personal use, and on the writeFile function i have the option to input the command endl to start a new line and it works fine; however when i look at the file it produces it prints endl right before the new line. so is there any way i can remove the "endl" from the variable and keep it from being written into the file.
void writeFile()
{
ofstream fos("data.py");
string data;
bool done = false;
string temp;
cout << "Enter Some Data. Enter s to stop." << endl;
while(!done)
{
cin >> data;
if(data == "s")
{
done = true;
}
else if(data == "endl")
{
fos << data + "\n";
}
else if(data != "s" && data != "endl")
{
fos << data + " ";
}
}
fos.close();
}
endlin the file but you are not supposed to? I guessfosis output to write, right? Then in your code, I seefos << data + "\n";Ifdatacontainsendl, then it goes out to `fos.. right? If I am wrong, well, please rewrite your question. – CppLearner Dec 31 '12 at 6:20