'"key":"value"'
I have the following string and I want to strip out key
and value
. What should be the regex
for this?
/"(.*?)"/g
returns "key"
and "value"
. I am interested in key
and value
without the "
s.
Any pointer would be helpful.