How to get substring " It's big \"problem " using a regexp
s = ' function(){ return " Is big \"problem "; }';
|
1
|
|||
|
|
|
should work with any quoted string |
||||
|
|
|
Friedl's classic "unrolled-loop" pattern:
|
||||
|
|
|
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). |
||
|
|
|
Works in The Regex Coach and PCRE Workbench. Example of test in JavaScript:
|
|||
|
|
|
|
This one comes from nanorc.sample available in many linux distros. It is used for syntax highlighting of C style strings
|
||
|
|