String s = "author= {insert text here},";
Trying to get the inside of the string, ive looked around but couldn't find a resolution with just split or tokenizer...
so far im doing this
arraySplitBracket = s.trim().split("\\{", 0);
which gives me insert text here}
,
at array[1] but id like a way to not have }
attached
also tried
StringTokenizer st = new StringTokenizer(s, "\\{,\\},");
But it gave me author=
as output.