我正在寻找一种方法来实现以下问题。
从一个字符串开始我尝试返回一个字符串[]等于
new String[]{Q},{ec.Qh},{ec.Q2}
有人有什么建议吗?
至今:
String a="Q={{ec.Qh}{ec.Q2}}";
int index_first = a.indexOf("=");
String name= a.substring(0,index_first);
String temp=a.substring(index_first+1, a.length());
temp=temp.replaceAll("\\{\\{","");
temp=temp.replaceAll("\\}\\{","\\,");
temp=temp.replaceAll("\\}\\}","");
String[] synonyms=temp.split(",");
//for(int i =0;i<synonyms.length;i++){System.out.println(synonyms[i]);}
String[] result=new String[]{name,synonyms} // does not work!