/**
  * 将表达式中‘)...]’替换为)]
  */public class regex {
    public static void main(String[] args) {
	    String str = "[((A<300)&&(A>200))>0.3]||{[((B<400)&&(B>300))>0.5]&&[((C<400)&&(C>300))>0.5]}";
	    String newStr = str.replaceAll("\\).+?\\]",")]");
	    System.out.println(newStr);
         }}

 

在java中的正则表达式使用'\\'来进行转义,比如要匹配'('这要写成'\\(',

而在标准正则表达式中使用'\'来转义,比如要匹配'('这要写成'\(',

 

输出:

[((A<300)]||{[((B<400)]&&[((C<400)]}