I would like to get the text between double quotes using JavaScript. I found online something like title.match(/\".*?\"/); but the thing is that sometimes I hav
title.match(/\".*?\"/);
try it with this one:
/"((?:\\.|[^"\\])*)"/
Debuggex Demo