All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.util.DollarBraceDecoder Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
/*
	Milyn - Copyright (C) 2006 - 2010

	This library is free software; you can redistribute it and/or
	modify it under the terms of the GNU Lesser General Public
	License (version 2.1) as published by the Free Software
	Foundation.

	This library is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

	See the GNU Lesser General Public License for more details:
	http://www.gnu.org/licenses/lgpl.txt
*/
package org.milyn.util;

import java.util.regex.Pattern;
import java.util.regex.Matcher;
import java.util.List;
import java.util.ArrayList;

/**
 * Decoder for Strings containing "${xxxxx}" type patterns.
 *
 * @author [email protected]
 */
public class DollarBraceDecoder {

    /**
     * Match against "${}", where there's at least one of any character
     * except '}' in between the braces ("{}").
     */
    public static final String PATTERN = "\\$\\{[^\\}]+\\}";
    private static final Pattern pattern = Pattern.compile(PATTERN);

    /**
     * Get the ${} tokens from the supplied string.
     * 

* For example, if the input string is "xxxx ${A} xxxxx ${B} ...", this method * will return a List containing 2 String, "A" and "B". * * @param string The String from which to extract the ${} tokens. * @return The list of tokens. */ public static List getTokens(String string) { List tokens = new ArrayList(); Matcher m = pattern.matcher(string); while (m.find()) { int start = m.start(); int end = m.end(); String token = string.substring((start + 2), (end - 1)); tokens.add(token); } return tokens; } /** * Replace all the ${} tokens with the specified String. *

* For example, if the input string is "xxxx ${A} xxxxx ${B} ..." and the * replacement String "?", this method will return "xxxx ? xxxxx ? ...". * * @param string The String on which to perform the replacement. * @param replacement The replacement string. * @return The String with the tokens replaced. */ public static String replaceTokens(String string, String replacement) { List tokens = getTokens(string); // Could obviously do this more efficiently by matching and finding // and using a StringBuilder, but this is fine for now :-) for (String token : tokens) { string = string.replace("${" + token + "}", replacement); } return string; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy