Matcher matcher;
String pattern = getText(patternFileName);
String textSample = getText(textFileName);
matcher = new Naive(pattern);
System.out.println("Naive String Matcher:");
printOutput(matcher, textSample);
matcher = new KarpRabin(pattern);
System.out.println("Karp-Rabin Matcher:");