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());
        }   
link|improve this question

77% accept rate
1  
You methods works fine. Assign foofoo to handlerContent and foo to keyword for example. You need to provide more context. – Oleg Mikheev Feb 17 at 10:45
1  
If you are looking for an exact keyword in your string, you might as well use yourString.indexOf(keyword) and check if it returns -1 (not found) or >= 0 (found). – assylias Feb 17 at 10:49
Got solved. Thanks. – typedef1 Feb 17 at 12:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.