I am trying to use c++ to edit a large amount of html files. All of it is working except for when i try to edit a src tag. I think it is because of the quotation marks. Here is my code.
string strReplace2 = "src=\"\""; //string to replace
and
strTemp = "src=\"http://localhost/Media/TV Shows/The Big Bang Theory Season 6/" + filename + "\"";
When i run the program everything works except that part being written to the file.
You can try this for replacing things in-between quotes..