Here is my code:
// Import io so we can use file objects import java.io.*; public class SearchThe { public static void main(String args[]) { try
You best should use Regular Expressions for this kind of search. As a easy/dirty workaround you could modify your stringSearch from
String stringSearch = "the";
to
String stringSearch = " the ";