Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4602236
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T23:57:08+00:00 2026-05-21T23:57:08+00:00

I wrote this regex to match strings: (?>(?<Quote>|’).*?(?<!\\)\k<Quote>) i.e., some text enclosed in quotes.

  • 0

I wrote this regex to match strings:

(?>(?<Quote>""|').*?(?<!\\)\k<Quote>)

i.e., some text enclosed in quotes. It also supports escaping, so it will match "hello\"world" in its entirety without stopping at the first quote, like I want. But I forgot about double-escaping. "hello\\"world" is not valid, for example.

I’m pretty sure this is possible to fix with balancing groups, but I’ve never really used them before. Anyone know how to write this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T23:57:09+00:00Added an answer on May 21, 2026 at 11:57 pm

    Regular expressions are not meant to be used for escaped constructs.

    I don’t think it’s possible to do this in any "nice" kind of way (if at all), although I’ll post an edit if I figure out otherwise.

    Balancing group definitions are for nested constructs. Nesting doesn’t happen in strings, so balancing group definitions don’t seem to even be the right tool for this.


    Edit 1:

    It depends on how many features you’re looking for. If you simply want to match the next escaped quotation, you can use the pattern

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

    which, when escaped for code, turns out like

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

    to match something like

    "Hello! \" Hi! \" "
    

    but as soon as you start adding more complicated requirements like Unicode escapes, it becomes a lot more tedious. Just do it by hand, it should be much simpler.


    Edit 2:

    If you’re curious about how balancing group definitions work anyway, I recommend reading page 430 of this book (34 in pdf).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote this regex with the idea that it will match any string in
Possible Duplicate: RegEx match open tags except XHTML self-contained tags I have this list
I have this regex variable: var regexp = new RegExp(RegExp.quote(myExpression) + '\\b', 'g'); which
Have to write a Regex that will match following: <a href=../../_asp/link.asp?link=sp1234.htm and <a href=../../_asp/link.asp?link=AL432123.htm
This is the below text file(log.txt) I am opening and need to match each
I have a string of this format 1.0.x.0 I have to write a regex
I wrote this function that's supposed to do StringPadRight("Hello", 10, "0") -> "Hello00000" .
I wrote this snippet of code and I assume len is tail-recursive, but a
I wrote this code I have these errors Cannot implicitly convert type x.Program.TreeNode' to
I wrote this function for filling closed loop, pixvali is declared globally to store

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.