I have a string (which contains JSON):
[{"type":[236]} , {"type":[2]} , {"type":[95]}, {"other":[33]}, {"other":[44]}]
I want to use a regex to extract only the TYPE numbers, so that the output is the following string:
[236 , 2 , 95]
How can I do this?