How do I get the substring " It's big \"problem "
using a regular expression?
s = ' function(){ return " It\'s big \"problem "; }';
How do I get the substring " It's big \"problem "
using a regular expression?
s = ' function(){ return " It\'s big \"problem "; }';
/"(?:[^"\\]|\\.)*"/
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);
(?:...)
is a passive or non-capturing group. It means that it cannot be backreferenced later. –
Izak /(["'])(?:[^\1\\]|\\.)*?\1/
–
Lester var s = ' my \\"new\\" string and \"this should be matched\"';
, this approach will lead to unexpected results. –
Bookrack "\\."
first yields better performance. I assume it's because doing this first makes the extra lookup for backslash in "[^"\\]"
redundant. Looking at the other answers such as Darrell's below gives more performant regex (and that's the one included in many Linux distros according to the answer.) So for performance go with \"(\\.|[^\"])*\"
. Timing it in Python 3.7 gave 1.375 millis vs 1.55 millis. –
Balduin '"\\"'
evaluates to the string value "\"
, with the second double quote being escaped, so there is no valid closing quote for the regex to match, hence the null matches being returned. This is easy to see if you use console.log
in the browser console. If you just enter '"\\"'
into the browser console by itself, the console will just spit back the string literal as is (eg. '"\\"'
), but if you instead console.log
it, then it will acutally print the value of the string literal rather than the string literal itself (eg. "\"
). –
Jacquline This one comes from nanorc.sample available in many linux distros. It is used for syntax highlighting of C style strings
\"(\\.|[^\"])*\"
var s = ' my \\"new\\" string and \"this should be matched\"';
, this approach will lead to unexpected results. –
Bookrack " \"(\\\\.|[^\\\"])*\" "
–
Cadman As provided by ePharaoh, the answer is
/"([^"\\]*(\\.[^"\\]*)*)"/
To have the above apply to either single quoted or double quoted strings, use
/"([^"\\]*(\\.[^"\\]*)*)"|\'([^\'\\]*(\\.[^\'\\]*)*)\'/
/(["\']).*?(?<!\\)(\\\\)*\1/is
should work with any quoted string
"Martha's"
would result in this match: "Martha'
, which is incorrect. The matching group, to determine which type of quote is being used to open it, is important. –
Yellowlegs (["\'])(.|\r?\n)*?(?<!\\)(\\\\)*\1
–
Anguilliform Most of the solutions provided here use alternative repetition paths i.e. (A|B)*.
You may encounter stack overflows on large inputs since some pattern compiler implements this using recursion.
Java for instance: http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6337993
Something like this:
"(?:[^"\\]*(?:\\.)?)*"
, or the one provided by Guy Bedford will reduce the amount of parsing steps avoiding most stack overflows.
"(?:\\"|.)*?"
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
"\\"
–
Kildare /"(?:(?:\\"|[^"])*)"/g
this should fix –
Puppet /"(?:[^"\\]++|\\.)*+"/
Taken straight from man perlre
on a Linux system with Perl 5.22.0 installed.
As an optimization, this regex uses the 'posessive' form of both +
and *
to prevent backtracking, for it is known beforehand that a string without a closing quote wouldn't match in any case.
This one works perfect on PCRE and does not fall with StackOverflow.
"(.*?[^\\])??((\\\\)+)?+"
Explanation:
"
;.*?
{Lazy match}; ending with non escape character [^\\]
;(.*?[^\\])??
"
), but it can be preceded with even number of escape sign pairs (\\\\)+
; and it is Greedy(!) optional: ((\\\\)+)?+
{Greedy matching}, bacause string can be empty or without ending pairs!"(.*?[^\\])?(\\\\)*"
–
Hernadez An option that has not been touched on before is:
This has the added bonus of being able to correctly match escaped open tags.
Lets say you had the following string; String \"this "should" NOT match\" and "this \"should\" match"
Here, \"this "should" NOT match\"
should not be matched and "should"
should be.
On top of that this \"should\" match
should be matched and \"should\"
should not.
First an example.
// The input string.
const myString = 'String \\"this "should" NOT match\\" and "this \\"should\\" match"';
// The RegExp.
const regExp = new RegExp(
// Match close
'([\'"])(?!(?:[\\\\]{2})*[\\\\](?![\\\\]))' +
'((?:' +
// Match escaped close quote
'(?:\\1(?=(?:[\\\\]{2})*[\\\\](?![\\\\])))|' +
// Match everything thats not the close quote
'(?:(?!\\1).)' +
'){0,})' +
// Match open
'(\\1)(?!(?:[\\\\]{2})*[\\\\](?![\\\\]))',
'g'
);
// Reverse the matched strings.
matches = myString
// Reverse the string.
.split('').reverse().join('')
// '"hctam "\dluohs"\ siht" dna "\hctam TON "dluohs" siht"\ gnirtS'
// Match the quoted
.match(regExp)
// ['"hctam "\dluohs"\ siht"', '"dluohs"']
// Reverse the matches
.map(x => x.split('').reverse().join(''))
// ['"this \"should\" match"', '"should"']
// Re order the matches
.reverse();
// ['"should"', '"this \"should\" match"']
Okay, now to explain the RegExp. This is the regexp can be easily broken into three pieces. As follows:
# Part 1
(['"]) # Match a closing quotation mark " or '
(?! # As long as it's not followed by
(?:[\\]{2})* # A pair of escape characters
[\\] # and a single escape
(?![\\]) # As long as that's not followed by an escape
)
# Part 2
((?: # Match inside the quotes
(?: # Match option 1:
\1 # Match the closing quote
(?= # As long as it's followed by
(?:\\\\)* # A pair of escape characters
\\ #
(?![\\]) # As long as that's not followed by an escape
) # and a single escape
)| # OR
(?: # Match option 2:
(?!\1). # Any character that isn't the closing quote
)
)*) # Match the group 0 or more times
# Part 3
(\1) # Match an open quotation mark that is the same as the closing one
(?! # As long as it's not followed by
(?:[\\]{2})* # A pair of escape characters
[\\] # and a single escape
(?![\\]) # As long as that's not followed by an escape
)
This is probably a lot clearer in image form: generated using Jex's Regulex
Image on github (JavaScript Regular Expression Visualizer.) Sorry, I don't have a high enough reputation to include images, so, it's just a link for now.
Here is a gist of an example function using this concept that's a little more advanced: https://gist.github.com/scagood/bd99371c072d49a4fee29d193252f5fc#file-matchquotes-js
here is one that work with both " and ' and you easily add others at the start.
("|')(?:\\\1|[^\1])*?\1
it uses the backreference (\1) match exactley what is in the first group (" or ').
[^\1]
should be replaced with .
because there is no such thing as an anti-back-reference, and it doesn't matter anyways. the first condition will always match before anything bad could happen. –
Seumas [^\1]
with .
would effectively change this regex to ("|').*?\1
and then it would match "foo\"
in "foo \" bar"
. That said, getting [^\1]
to actually work is hard. @mathiashansen – You're better off with the unwieldy and expensive (?!\1).
(so the whole regex, with some efficiency cleanup, would be (["'])(?:\\.|(?!\1).)*+\1
. The +
is optional if your engine doesn't support it. –
Polyhydric 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).
If it is searched from the beginning, maybe this can work?
\"((\\\")|[^\\])*\"
A more extensive version of https://mcmap.net/q/23849/-regex-for-quoted-string-with-escaping-quotes
/"([^"\\]{50,}(\\.[^"\\]*)*)"|\'[^\'\\]{50,}(\\.[^\'\\]*)*\'|“[^”\\]{50,}(\\.[^“\\]*)*”/
This version also contains
“
and close ”
)I faced a similar problem trying to remove quoted strings that may interfere with parsing of some files.
I ended up with a two-step solution that beats any convoluted regex you can come up with:
line = line.replace("\\\"","\'"); // Replace escaped quotes with something easier to handle
line = line.replaceAll("\"([^\"]*)\"","\"x\""); // Simple is beautiful
Easier to read and probably more efficient.
If your IDE is IntelliJ Idea, you can forget all these headaches and store your regex into a String variable and as you copy-paste it inside the double-quote it will automatically change to a regex acceptable format.
example in Java:
String s = "\"en_usa\":[^\\,\\}]+";
now you can use this variable in your regexp or anywhere.
(?<="|')(?:[^"\\]|\\.)*(?="|')
" It\'s big \"problem " match result: It\'s big \"problem
("|')(?:[^"\\]|\\.)*("|')
" It\'s big \"problem " match result: " It\'s big \"problem "
Messed around at regexpal and ended up with this regex: (Don't ask me how it works, I barely understand even tho I wrote it lol)
"(([^"\\]?(\\\\)?)|(\\")+)+"
© 2022 - 2025 — McMap. All rights reserved.