vote up 2 vote down star
1

How to get substring " It's big \"problem " using a regexp

s = ' function(){ return " Is big \"problem "; }';

flag
How do you find "It's" in a string that only contains "Is"? I'd fix it for you, but I don't know which single-quote/escape conventions apply in the language you're using. – Jonathan Leffler Nov 1 '08 at 15:36

5 Answers

vote up 0 vote down
/(["\']).*?(?<!\\)(\\\\)*\1/is

should work with any quoted string

link|flag
Nice, but too flexible for the request (will match single quotes...). And can be simplified to /".*?(?<!\\)"/ unless I miss something. Oh, and some languages (eg. JavaScript) alas doesn't understand negative lookbehind expressions. – PhiLho Oct 30 '08 at 12:47
@PhiLho, just using a single (?<!\\) would fail on escaped backslashes at the end of the string. True about look-behinds in JavaScript though. – MizardX Nov 1 '08 at 8:57
vote up 2 vote down

Friedl's classic "unrolled-loop" pattern:

/"[^"\\]*(?:\\.[^"\\]*)*/
link|flag
Err, which regular expression syntax is this? In particular the ?:\\ thingy – ePharaoh Aug 12 at 18:36
Managed to find an explanation here: ad.hominem.org/log/2005/… The syntax there is more palatable. Anyway, thanks Alan for the pointer. – ePharaoh Aug 12 at 18:42
vote up 1 vote down

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).

link|flag
True enough, but this problem is well within the capabilities of regexes, and there are a great many implementations of those. – Alan Moore Oct 30 '08 at 16:45
vote up 4 vote down
/"(?:[^"\\]|\\.)*"/

Works in The Regex Coach and PCRE Workbench.

Example of test in JavaScript:

var s = ' function(){ return " Is big \\"problem\\", \\no? "; }';
var m = s.match(/"(?:[^"\\]|\\.)*"/);
if (m != null)
    alert(m);
link|flag
vote up 0 vote down

This one comes from nanorc.sample available in many linux distros. It is used for syntax highlighting of C style strings

\"(\\.|[^\"])*\"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.