Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I must be doing my regex wrong.

In the console I do

db.triples.find({sub_uri: /.*pdf.*/ }); and get the desired result.

My Java class looks like this, (I have set input="pdf"):

    public static List<Triple> search(String input){

        DB db=null;
        try {
            db = Dao.getDB();
        }
        catch (UnknownHostException e1) {   e1.printStackTrace(); }
        catch (MongoException e1) {         e1.printStackTrace(); }

        String pattern = "/.*"+input+".*/";
System.out.println(input);      

                List<Triple> triples = new ArrayList<Triple>();
                DBCollection triplesColl = null;

                try {
                    triplesColl = db.getCollection("triples");      } catch (MongoException e) { e.printStackTrace();}

                {                   
                    Pattern match = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE);
                    BasicDBObject query = new BasicDBObject("sub_uri", match);

                    // finds all people with "name" matching /joh?n/i
                    DBCursor cursor = triplesColl.find(query);

                    if(cursor.hasNext()){
                    DBObject tripleAsBSON = cursor.next();
                        Triple t = new Triple();
                        t.setSubject(new Resource((String)tripleAsBSON.get("sub_uri")));

System.out.println(t.getSubject().getUri());                

                        triples.add(t);
                    }   
            }
        return triples;
    }

From the console I get 12 results as I should, from the Java code I get no results.

share|improve this question

1 Answer

up vote 8 down vote accepted

Java doesn't need/understand regex delimiters (/ around the regex). You need to remove them:

String pattern = ".*"+input+".*";

I'm also not sure if that regex is really what you want. At least you should anchor it:

String pattern = "^.*"+input+".*$";

and compile it using the Pattern.MULTILINE option. This avoids a severe performance penalty if a line doesn't contain your sub-regex input. You are aware that input is a regex, not a verbatim string, right?

share|improve this answer
My understanding: If input="pdf" I am assuming that what I have done is the equivalent of String pattern = "/.*pdf.*/" - I'd love to be wrong, that would explain my troubles. – Ankur Oct 25 '11 at 6:52
Thanks, your regex works nicely. – Ankur Oct 25 '11 at 7:00
1  
@Ankur: Your assumption is correct. Just be aware that if input were, say a+b, your regex wouldn't match the text xxxa+bxxx because the + has special meaning in a regex. – Tim Pietzcker Oct 25 '11 at 7:03
Now I get what you meant :) Thanks again. – Ankur Oct 25 '11 at 7:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.