You don't need regex for this, just use string manipulation.
List<String> values = new ArrayList<String>(Arrays.asList(text.substring(1, text.length() - 1).split(", ")));
If you need to drop the first value, then just do the following:
values.remove(0);