Java正则表达式, 提取双引号中间的部分

String str="this is \"Tom\" and \"Eric\", this is \"Bruce lee\", he is a chinese, name is \"李小龙\"。";

            Pattern p=Pattern.compile("\"(.*?)\"");

            Matcher m=p.matcher(str);

            while(m.find()){

                System.out.println(m.group());

            }

  

你可能感兴趣的:(java正则表达式)