I\'m trying to do a non-greedy capture of text inside double quotation marks with regex in node.js. Most of the Google results say I should use one of these:
\"
You can give this a shot. This should include everything in the quotes but not the quotes themselves -
/(?<=")[^" ]*(?=")/