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



I want to allow the user use a "*" metachar in search and would like to use the pattern entered by user with Pattern.compile. So i would have to escape all the other metachars that user enters except the *. I am doing it with the below code, is there a better way of doing this-

private String escapePattern(String pattern) {
        final String PATTERN_MATCH_ALL = ".*"; 
        if(null == pattern || "".equals(pattern.trim())) { 
            return PATTERN_MATCH_ALL;
        }
        String remaining = pattern;
        String result = "";
        int index;
        while((index = remaining.indexOf("*")) >= 0) { 
            if(index > 0) {
                result += Pattern.quote(remaining.substring(0, index)) + PATTERN_MATCH_ALL;
            }
            if(index < remaining.length()-1) {
                remaining = remaining.substring(index + 1);
            } else
                remaining = "";
        }
        return result + Pattern.quote(remaining) + PATTERN_MATCH_ALL;
    }


Best Regards,
Keshav

share|improve this question
What are you trying to improve? Readability? Performance? Conciseness? – Stephen C Jun 15 '11 at 9:55
the code i have writted is very verbose, as well i wanted was to use any inbuilt functionality that would do this for me instead of me doing this myself. so both readability, conciseness – kesi Jun 15 '11 at 10:50

1 Answer

up vote 2 down vote accepted

How about

"\\Q" + pattern.replace("*", "\\E.*\\Q") + "\\E";
share|improve this answer
Right. New answer... – aioobe Jun 15 '11 at 9:51

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.