thanks for looking,
I've had a terrible time trying to get the right search terms for this regex question. I need to ensure that quotes are already escaped in a string, otherwise the match should fail. (Most search results for this kind of question are just pages saying you need to escape quotes or how to escape quotes.)
Valid:
This is valid
This \"is Valid
This is al\"so Valid\"
Invalid:
This i"s invalid
This i"s inv"alid
The only thing I've managed to find so far is
((?:\\"|[^"])*)
This seems to match the first part of the following, but nothing after the escaped quote
This is a \"test
Again, this should fail:
This is a \"test of " the emergency broadcast system
Thanks for any help, I hope this is even possible.
not using a language. What language does the CMS use? – Joseph Silber Jan 5 '12 at 18:13a\\"b,a\\\\"bare invalid, but thata\\\"banda\\\\\"bare valid. That's because the even number of backslashes preceding the quote in the first two examples are tied up as an escape leaving the quote unescaped even though it is preceded by a backslash, while the odd number of backslashes preceding the quote in the second two examples are OK because the even number of backslashes quote the backslashes, leaving the odd backslash to escape the quote. – Jonathan Leffler Jan 5 '12 at 18:20