vote up 2 vote down star

Is there a standard (preferably Apache Commons or similarly non-viral) library for doing "glob" type matches in Java? When I had to do similar in Perl once, I just changed all the "." to "\.", the "*" to ".*" and the "?" to "." and that sort of thing, but I'm wondering if somebody has done the work for me.

Similar question: http://stackoverflow.com/questions/445910/create-regex-from-glob-expression

flag

Could you give a precise example of what you want to do? – Thorbjørn Ravn Andersen Aug 8 at 8:58
What I want to do (or rather what my client wants to do) is match things like "*-2009/" or "*rss*" in urls. Mostly it's pretty trivial to convert to regex, but I wondered if there was an easier way. – Paul Tomblin Aug 8 at 10:50

6 Answers

vote up 4 vote down check

There's nothing built-in, but it's pretty simple to convert something glob-like to a regex:

public static String createRegexFromGlob(String glob)
{
    String out = "^";
    for(int i = 0; i < glob.length(); ++i)
    {
        final char c = glob.charAt(i);
        switch(c)
        {
        case '*': out += ".*"; break;
        case '?': out += '.'; break;
        case '.': out += "\\."; break;
        case '\\': out += "\\\\"; break;
        default: out += c;
        }
    }
    out += '$';
    return out;
}

this works for me, but I'm not sure if it covers the glob "standard", if there is one :)

Update by Paul Tomblin: I found a perl program that does glob conversion, and adapting it to Java I end up with:

    private String convertGlobToRegEx(String line)
    {
    LOG.info("got line [" + line + "]");
    line = line.trim();
    int strLen = line.length();
    StringBuilder sb = new StringBuilder(strLen);
    // Remove beginning and ending * globs because they're useless
    if (line.startsWith("*"))
    {
        line = line.substring(1);
        strLen--;
    }
    if (line.endsWith("*"))
    {
        line = line.substring(0, strLen-1);
        strLen--;
    }
    boolean escaping = false;
    int inCurlies = 0;
    for (char currentChar : line.toCharArray())
    {
        switch (currentChar)
        {
        case '*':
            if (escaping)
                sb.append("\\*");
            else
                sb.append(".*");
            escaping = false;
            break;
        case '?':
            if (escaping)
                sb.append("\\?");
            else
                sb.append('.');
            escaping = false;
            break;
        case '.':
        case '(':
        case ')':
        case '+':
        case '|':
        case '^':
        case '$':
        case '@':
        case '%':
            sb.append('\\');
            sb.append(currentChar);
            escaping = false;
            break;
        case '\\':
            if (escaping)
            {
                sb.append("\\\\");
                escaping = false;
            }
            else
                escaping = true;
            break;
        case '{':
            if (escaping)
            {
                sb.append("\\{");
            }
            else
            {
                sb.append('(');
                inCurlies++;
            }
            escaping = false;
            break;
        case '}':
            if (inCurlies > 0 && !escaping)
            {
                sb.append(')');
                inCurlies--;
            }
            else if (escaping)
                sb.append("\\}");
            else
                sb.append("}");
            escaping = false;
            break;
        case ',':
            if (inCurlies > 0 && !escaping)
            {
                sb.append('|');
            }
            else if (escaping)
                sb.append("\\,");
            else
                sb.append(",");
            break;
        default:
            escaping = false;
            sb.append(currentChar);
        }
    }
    return sb.toString();
}

I'm editing into this answer rather than making my own because this answer put me on the right track.

link|flag
Yeah, that's pretty much the solution I came up with the last time I had to do this (in Perl) but I was wondering if there was something more elegant. I think I'm going to do it your way. – Paul Tomblin Aug 8 at 14:34
Actually, I found a better implementation in Perl that I can adapt into Java at kobesearch.cpan.org/htdocs/Text-Glob/… – Paul Tomblin Aug 8 at 20:56
Couldn't you use a regex replace to turn a glob into a regex? – Tim Sylvester Aug 9 at 1:10
The lines at the top that strip out the leading and trailing '*' need to be removed for java since String.matches against the whole string only – kts Aug 12 at 13:49
1  
FYI: The standard for 'globbing' is the POSIX Shell language - opengroup.org/onlinepubs/009695399/… – Stephen C Nov 13 at 10:11
show 1 more comment
vote up 1 vote down

I don't know about a "standard" implementation, but I know of a sourceforge project released under the BSD license that implemented glob matching for files. It's implemented in one file, maybe you can adapt it for your requirements.

link|flag
vote up 1 vote down

GlobCompiler/GlobEngine, from Jakarta ORO, looks promising. It's available under the Apache License.

link|flag
vote up 1 vote down

Globbing is also planned for Java 7.

See http://java.sun.com/docs/books/tutorial/essential/io/find.html

link|flag
vote up 1 vote down

This is a simple Glob implementation which handles * and ? in the pattern

public class GlobMatch {
    private String text;
    private String pattern;

    public boolean match(String text, String pattern) {
    	this.text = text;
    	this.pattern = pattern;

    	return matchCharacter(0, 0);
    }

    private boolean matchCharacter(int patternIndex, int textIndex) {
    	if (patternIndex >= pattern.length()) {
    		return false;
    	}

    	switch(pattern.charAt(patternIndex)) {
    		case '?':
    			// Match any character
    			if (textIndex >= text.length()) {
    				return false;
    			}
    			break;

    		case '*':
    			// * at the end of the pattern will match anything
    			if (patternIndex + 1 >= pattern.length() || textIndex >= text.length()) {
    				return true;
    			}

    			// Probe forward to see if we can get a match
    			while (textIndex < text.length()) {
    				if (matchCharacter(patternIndex + 1, textIndex)) {
    					return true;
    				}
    				textIndex++;
    			}

    			return false;

    		default:
    			if (textIndex >= text.length()) {
    				return false;
    			}

    			String textChar = text.substring(textIndex, textIndex + 1);
    			String patternChar = pattern.substring(patternIndex, patternIndex + 1);

    			// Note the match is case insensitive
    			if (textChar.compareToIgnoreCase(patternChar) != 0) {
    				return false;
    			}
    	}

    	// End of pattern and text?
    	if (patternIndex + 1 >= pattern.length() && textIndex + 1 >= text.length()) {
    		return true;
    	}

    	// Go on to match the next character in the pattern
    	return matchCharacter(patternIndex + 1, textIndex + 1);
    }
}
link|flag
vote up 0 vote down

By the way, it seems as if you did it the hard way in Perl

This does the trick in Perl:

my @files = glob("*.html")
# Or, if you prefer:
my @files = <*.html>
link|flag
That only works if the glob is for matching files. In the perl case, the globs actually came from a list of ip addresses that was written using globs for reasons I won't go into, and in my current case the globs were to match urls. – Paul Tomblin Sep 1 at 7:12

Your Answer

Get an OpenID
or

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