I have a String like this:
"0008934","1801 W NORMATOWN ROAD","ROMEOVILLE","IL","US","60446","8158866981","Y"
I would like to extract all the values inside double quotes. Could you please help me to accomplish the task.
This is what I am expecting:
0008934
1801 W NORMATOWN ROAD
ROMEOVILLE
IL
US
60446
8158866981
Y
Anyone can you pleas help me?
()to group anything inside""and then useMatcher#find()andMatcher#group()