Hello,
I have a MultiLine textbox,
txtReadDocs.Text;
I'd like to search the contents of text "txtReadDocs".
To use a simple search algorithm: Search for the entire search term entered by the user. For example, if the user enters "hello", search only for "hello". If the user enters "hello world", search only for the complete term "hello world", and not the individual "hello" or "world" words/terms. (This makes it easier.) Make your search case-insensitive.
Thank You so much !!!!