Hey, thanks in advance for any help!
I need to search a file for a specific word starting on a newline then skip a SPACE and read the next word into a char array or string, and then skip a word and read the next word, stopping at the next semicolon found...
Now, can I use the Space character as a delimiter? Or semicolon, or a word and space combination?
Specifically, I need to grab a couple unknown words that are next to known words, in unknown positions in a file, and set those words as strings or something, then use them later.
For example:
File data................
File data................
FindThisWord GetThisWord SkipThisWord GetThisOtherWord;
File data................
File data................
The idea is solid in my head. However, I have absolutely NO idea how to implement this...
Any ideas/suggestions? Thanks again for the help!