I'm trying to extract words between double quote. The string that I need to split is a derivate of JSON array converted to string.
My string is represented like this: {"methodParam":["test1","test2","test3"]}
What I need to do is iterate over this string and obtain only the words inside double quote using .split java method like this:
test1
test2
test3
I've already tried some regex with bad results