I'm trying to find a regex in Javascript for a seemingly simple problem, but I have been beating my head against the wall all morning about it. I'm trying to count the quotation symbols that occur in a string with string.match. The catch is that escaped quotation symbols should not be counted, but quotations which are preceded by an escaped backslash should be again.I'm trying to find a regex in Javascript for a