Re: Re: search


Posted by psmith on November 15, 2000 at 10:29:34:

In Reply to: Re: search posted by mnemo on November 14, 2000 at 22:01:52:

: : How to search for some string in a html-file

: sl := TStringList.Create;
: sl.LoadFromFile('myfile.html');
: if Pos('hello', sl.Text)<>0 then
: ShowMessage('hello does exist in this file!');
: sl.Free;

Thank you very much!




Related Articles and Replies: