Search Results

2
votes

How can I match a quote-delimited string with a regex?

I would suggest: ([\"'])(?:\\\1|.)*?\1 But only because it handles escaped quote chars and allows both the ' and " to be the quote char. I would also suggest looki …