I have been using Apache Tika to extract contents of a PDF file into a string. However, I need to search for a few patterns in the file.
I believe I may have to use a regular expression to search the string. Is this the right approach and use of Tika to check if a particular keyword exists in the PDF file.
I am using the following code but it is not getting any match for the regular expression. keyword is a string which I wish to find in my text.
for (int i=0; i<num_keywords; i++) {
String keyword = keywords.get(i);
Pattern p = Pattern.compile(keyword);
Matcher m = p.matcher(handlerContent);
if(m.find())
{
System.out.println("Found comment: "+m.group());
}
//updatelog(keyword,f.getName());
}
foofootohandlerContentandfootokeywordfor example. You need to provide more context. – Oleg Mikheev Feb 17 at 10:45yourString.indexOf(keyword)and check if it returns -1 (not found) or >= 0 (found). – assylias Feb 17 at 10:49