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

I'm trying to write a function to perform substitutions of environment variables in java. So if I had a string that looked like this:

User ${USERNAME}'s APPDATA path is ${APPDATA}.

I want the result to be:

User msmith's APPDATA path is C:\Users\msmith\AppData\Roaming.

So far my broken implementation looks like this:

public static String expandEnvVars(String text) {        
    Map<String, String> envMap = System.getenv();
    String pattern = "\\$\\{([A-Za-z0-9]+)\\}";
    Pattern expr = Pattern.compile(pattern);
    Matcher matcher = expr.matcher(text);
    if (matcher.matches()) {
        for (int i = 1; i <= matcher.groupCount(); i++) {
            String envValue = envMap.get(matcher.group(i).toUpperCase());
            if (envValue == null) {
                envValue = "";
            } else {
                envValue = envValue.replace("\\", "\\\\");
            }
            Pattern subexpr = Pattern.compile("\\$\\{" + matcher.group(i) + "\\}");
            text = subexpr.matcher(text).replaceAll(envValue);
        }
    }
    return text;
}

Using the above sample text, matcher.matches() returns false. However if my sample text, is ${APPDATA} it works.

Can anyone help?

share|improve this question

4 Answers

up vote 0 down vote accepted

You don't want to use matches(). Matches will try to match the entire input string.

Attempts to match the entire region against the pattern.

What you want is while(matcher.find()) {. That will match each instance of your pattern. Check out the documentation for find().

Within each match, group 0 will be the entire matched string (${appdata}) and group 1 will be the appdata part.

Your end result should look something like:

String pattern = "\\$\\{([A-Za-z0-9]+)\\}";
Pattern expr = Pattern.compile(pattern);
Matcher matcher = expr.matcher(text);
while (matcher.find()) {
    String envValue = envMap.get(matcher.group(1).toUpperCase());
    if (envValue == null) {
        envValue = "";
    } else {
        envValue = envValue.replace("\\", "\\\\");
    }
    Pattern subexpr = Pattern.compile(Pattern.quote(matcher.group(0)));
    text = subexpr.matcher(text).replaceAll(envValue);
}
share|improve this answer
That works. Thanks! – Michael Smith Jan 20 '11 at 21:51
@Michael, you are welcome. – jjnguy Jan 20 '11 at 21:51
Your example with matcher.group(0) throws because the ${} parts of the returned string must be escaped for this case. So I used "\\$\\{" + matcher.group(1) + "\\}" for expression instead. – Michael Smith Jan 20 '11 at 21:56
@Michael, thanks for pointing that out. See my edit to get that to work. (hint, Pattern.quote()) – jjnguy Jan 20 '11 at 21:58
Ah yes, very nice. – Michael Smith Jan 20 '11 at 22:00

I see you've already accepted an answer. However, f you don't want to write the code for yourself, the Apache Commons Lang library has a class called StrSubstitutor. It does exactly this.

share|improve this answer
Thank you. – Michael Smith Jan 20 '11 at 22:01

Unless you're just trying to learn how to build things from scratch, you should not really bother implementing your own template engine - there are multitudes already available.

One very good one is FreeMaker (which has Java API). Here is a tutorial: http://www.bredelet.com/Denis/FreeMarker%20first%20steps.html,

share|improve this answer
I just found Apache commons org.apache.commons.exec.util.StringUtils.stringSubstitution(), it does exactly what I want, and we're already using exec. – Michael Smith Jan 20 '11 at 21:47
public static String expandEnvVars(String text) {        
    Map<String, String> envMap = System.getenv();       
    for (Entry<String, String> entry : envMap.entrySet()) {
        String key = entry.getKey();
        String value = entry.getValue();
        text = text.replaceAll("\\$\\{" + key + "\\}", value);
    }
    return text;
}
share|improve this answer

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.