我想提取以下标记中的内容
${FNAME} ${LNAME} ${123}
FNAME LNAME 123.
我尝试了下面的内容。
public static void main(String[] args) {
String input = "{FNAME} ${LNAME} ${123}";
Pattern p = Pattern.compile("\\$\\{");
Matcher m = p.matcher(input);
while (m.find()) {
System.out.println("Found a " + m.group() + ".");
}
}
错误地结束了。初学者到表达式。