Javascript: howto get rid of resulting ""
Hey folks,
I try to do smth like this:
var s = 'this is a "" && "string constant" and this "is another" one',
result = s.match(new RegExp('"{1}(.*?)"{1}', 'g'));
console.log(result);...
Submitted by anonymous - 10 years ago