Given the string like this
This is a string - ["Testing", [["Test" , 0]] , [["TTest2",0,[23]]]
How can i extract all string in the double quote "" into an array like Testing, Test, TTest2 ?
Given the string like this
This is a string - ["Testing", [["Test" , 0]] , [["TTest2",0,[23]]]
How can i extract all string in the double quote "" into an array like Testing, Test, TTest2 ?
You'll have to loop through your external array, and for each element check:
This can (should) be done recursively.