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 8630711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T09:06:50+00:00 2026-06-12T09:06:50+00:00

Is it possible to make a regular expression to match everything within single brackets

  • 0

Is it possible to make a regular expression to match everything within single brackets but ignore double brackets, so for example in:

{foo} {bar} {{baz}}

I’d like to match foo and bar but not baz?

  • 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-06-12T09:06:51+00:00Added an answer on June 12, 2026 at 9:06 am

    To only match foo and bar without the surrounding braces, you can use

    (?<=(?<!\{)\{)[^{}]*(?=\}(?!\}))
    

    if your language supports lookbehind assertions.

    Explanation:

    (?<=      # Assert that the following can be matched before the current position
     (?<!\{)  #  (only if the preceding character isn't a {)
    \{        #  a {
    )         # End of lookbehind
    [^{}]*    # Match any number of characters except braces
    (?=       # Assert that it's possible to match...
     \}       #  a }
     (?!\})   #  (only if there is not another } that follows)
    )         # End of lookahead
    

    EDIT: In JavaScript, you don’t have lookbehind. In this case you need to use something like this:

    var myregexp = /(?:^|[^{])\{([^{}]*)(?=\}(?!\}))/g;
    var match = myregexp.exec(subject);
    while (match != null) {
        for (var i = 0; i < match.length; i++) {
            // matched text: match[1]
        }
        match = myregexp.exec(subject);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to know if it is possible to make a single regular expression
Possible Duplicate: Regular Expression to escape double quotes inside single quotes I need a
I've got a working regular expression, but I'd like to make it a tad
Is it possible to make efficient queries that use the complete regular expression feature
Possible Duplicate: How do I make part of a regular expression optional in Ruby?
Is it possible to make a Func delegate an extension method? For example, just
I need to make a regular expression (I'm using notepad++ for searching text files)
Possible Duplicate: Is there a regular expression to detect a valid regular expression? Regular
I'm looking for a way to find the smallest possible regular-expression that accepts a
I'm using Python re to try to make a regular expression which finds all

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.