Ok, this SHOULD be easy, but for some reason I'm having a hard time with it. I want to match on '"' (double quote) but not when it's preceded by a backslash ('\"').
I tried this:
$string =~ /[^\\]\"/
but, it doesn't work. I've also tried all sorts of variations on this...but, can't get it to...