I want to convert this String:
String s = "[\"val1\", \"val2\", \"val3\"]";
to an array or an ArrayList (without regex and split). It's from a Database, and it's generic. It's also possible to have commas inside the high quotes.
Is this possible?