I would like to find a regular expression (regex) that does detect if you have some invalid escapes in a C double quoted escaped string (where you can find double quotes only escaped).
I consider valid \\ \n \r \" (the test string is using ")
A partial solution to this is to use (?<!\\)\\[^\"\\nr] but this one fails to detect bad escapes like \\\.
Here is a test string that I use to test the matching:
...\n...\\b...\"...\\\\...\\\E...\...\\\...\\\\\..."...\E...
The expression should match the last 6 blocks as invalid, the first 4 are valid. The problem is that my current version does find only 2/5 errors.
\t\b\v\f\a\?\'for the simple characters; they also allow\o\oo\ooofor octal escapes, and\xX\xXXfor hex (and nominally more than two hex digits, in fact). And C99 allows\uXXXXand\U00XXXXXXfor hex-encoded Unicode characters too. – Jonathan Leffler Dec 9 '09 at 18:30