I have a String, which I want to split into parts using delimeter }},{“. I have tried using:
String delims="['}},{\"']+";
String field[]=new String[50];
field=subResult.split(delims);
But it is not working 🙁 do you know, what expression in delims should I use?
Thanks for your replies
If the delimiter is simply
}},{thensubResult.split("\\}\\},\\{")should work