Can someone help me on searching and displaying string in a text file.. Thanks, I'm using Dev C++.. :)
Last edited on
What kind of string is it?
1. one word
2. exact string that may include gaps, all in one line
3. one full line of the file
4. possibly several lines
thanks.. how about number 4?
> how about number 4? ( possibly several lines)
Somewhat similar to 2, but use a sliding window (aka moving window) algorithm.