I have a string of the following type:
{{a}{b}{c}{d}{e}{f}{g}{h}}
where a to h can be any string (which doesn't contain { and {).
What is the most efficient way of getting just a, b, c,..h in an Array maybe in Java?
Scanning through each character doesn't seem to be a good solution to me.