Remove word from a text file using C++?

I have a C++ program that performs calculations on numbers in a text file. However, suppose we have additional words in the text file such as "Title". In this instance, the program will not calculate the numbers in the file because of the text.

How do we remove text from a file using the C++ program? e.g. if I wanted to specify the program to remove any instances of the word "Title", how would I do it?
Read the file into a vector of strings.
Read the vector of strings back to the file, overwriting it's contents, and skipping any strings containing "Title".
Topic archived. No new replies allowed.