大阔专题

【正则】如何去掉花括号{}大括号,大阔号和里面的值;去掉尖括号里的值

一、问题 如何使用正则去掉大括号({**})及里面包含的值; 二、代码 public class test222 {public static void main(String[] args) {String str="{A}123{aaa}456{bbb}";str=str.replaceAll("\\{[^}]*\\}","");System.out.println(str);}}