改一下楼上的
int i=ds.indexof("{");//找到第一个{的位置
int j=ds.indexof(";");//找到第一个;的位置
string str=ds.substring(i+1,j); 从{后一位截取到;但不包括;
用正则表达式
很容易截图。
如果不用正则的话,得判断
如果是大括号,就把后面的内容,全部保存下来。一直保存到;号停止。
int i=ds.indexof("{");
int j=ds.indexof("}");
string str=ds.substring(i+1,j);
用map吧