up vote 5 down vote favorite
3
share [g+] share [fb]

How do I get the substring " It's big \"problem " using a regex?

s = ' function(){  return " Is big \"problem  ";  }';
link|improve this question
1  
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
Actually, looking at the dates, I see that the other question is a duplicate of this one. Either way, be sure to check out my answer. – ridgerunner Oct 8 '11 at 14:20
feedback

6 Answers

/"(?:[^"\\]|\\.)*"/

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|improve this answer
feedback

Friedl's classic "unrolled-loop" pattern:

/"[^"\\]*(?:\\.[^"\\]*)*/
link|improve this answer
Err, which regular expression syntax is this? In particular the ?:\\ thingy – ePharaoh Aug 12 '09 at 18:36
Managed to find an explanation here: ad.hominem.org/log/2005/05/quoted_strings.php The syntax there is more palatable. Anyway, thanks Alan for the pointer. – ePharaoh Aug 12 '09 at 18:42
feedback

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

\"(\\.|[^\"])*\"
link|improve this answer
feedback
"(?:\\"|.)*?"

Alternating the \" and the . passes over escaped quotes while the lazy quantifier *? ensures that you don't go past the end of the quoted string. Works with .NET Framework RE classes

link|improve this answer
feedback
/(["\']).*?(?<!\\)(\\\\)*\1/is

should work with any quoted string

link|improve this answer
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
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).

link|improve this answer
1  
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
feedback

Your Answer

 
or
required, but never shown