/**
* 获取的占位符内容:现在是{}
* @param str 模板数据
* @return
*/
public static List<String> getTemplatePlaceholder(String str) {
String pattern = "\\{([^}]*)\\}";
List<String> list = new LinkedList<>();
Matcher matcher = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE).matcher(str);
while (matcher.find()) {
String group = matcher.group(0);
//去掉外围的{}括号 根据自己需要处理
group=group.replaceAll("\\{|\\}", "");
list.add(group);
}
return list;
}