How do I get the substring " It's big \"problem " using a regex?
s = ' function(){ return " Is big \"problem "; }';
feedback
|
Works in The Regex Coach and PCRE Workbench. Example of test in JavaScript:
| ||||
|
feedback
|
|
Friedl's classic "unrolled-loop" pattern:
| |||||
feedback
|
|
This one comes from nanorc.sample available in many linux distros. It is used for syntax highlighting of C style strings
| |||
|
feedback
|
Alternating the | |||
|
feedback
|
should work with any quoted string | |||||
feedback
|
|
One has to remember that regexps aren't a silver bullet for everything string-y. Some stuff are simpler to do with a cursor and linear, manual, seeking. A CFL would do the trick pretty trivially, but there aren't many CFL implementations (afaik). | |||||
feedback
|