У меня есть следующий шаблон String: "Hello [Name] Please find attached [Invoice Number] which is due on [Due Date]"
.
У меня также есть переменные String для имени, номера счета и срока действия - какой лучший способ заменить токены в шаблоне переменными?
(Обратите внимание, что если переменная содержит токен, она НЕ должна быть заменена).
ИЗМЕНИТЬ
Благодаря @laginimaineb и @alan-moore, здесь мое решение:
public static String replaceTokens(String text,
Map<String, String> replacements) {
Pattern pattern = Pattern.compile("\\[(.+?)\\]");
Matcher matcher = pattern.matcher(text);
StringBuffer buffer = new StringBuffer();
while (matcher.find()) {
String replacement = replacements.get(matcher.group(1));
if (replacement != null) {
// matcher.appendReplacement(buffer, replacement);
// see comment
matcher.appendReplacement(buffer, "");
buffer.append(replacement);
}
}
matcher.appendTail(buffer);
return buffer.toString();
}