How do I read from a file till a particular character is reached and then seek to the next character and continue reading in C++.
In my program I am using some HTML syntax and generating a .htm file... So in my C++ code I have added the tags.
But when I read from my .htm file I want it to not include the tags.
What I plan on doing is reading the file till '<'
is encountered then just seek to the point till '>'
is encountered and continue reading from there.