I would like to use regex to extract the values used inside the second []
[
"Shoes for men wither",
"Shoes for men wither leather",
]
I have tried the following: check all the words between quotes.
Matcher m = Pattern.compile("\"([^\"]*)\"").matcher(response);
The problem with the above is that it gives me the other values outside the inner array.

substr().