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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T22:02:44+00:00 2026-06-02T22:02:44+00:00

I am trying to create a regular expression (in PHP) that matches any of

  • 0

I am trying to create a regular expression (in PHP) that matches any of these texts:

#{text}
#{text1}{text2}
#{text1}{numbers}{text2}
#{text1}{text with spaces}{numbers}{text2}

And so. Basically the first block could only hold text without spaces, yet the rest could hold anything. And after that, getting as matches those text1…numbers, etc. I’ve been trying with some regexp, yet it didn’t make it. Here’s the last one:

/#{(\w+)}({([\ a-zA-Z0-9*])})*/U

Thanks in advance!

EDIT: Just like @stema suggested, I changed my regexp to this one:

/#\{(\w+)\}(\{([^}]*)\})*/

I avoided the Ungreedy flag because it was not helping the expression at all :). However, the results are not as many as I needed:

array(4) {
  [0]=>
  string(42) "#{text1}{text with spaces}{numbers}{text2}"
  [1]=>
  string(5) "text1"
  [2]=>
  string(7) "{text2}"
  [3]=>
  string(5) "text2"
}

It seems that the inbetween parameters are not parsed (which looks weird to me).

  • 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-02T22:02:46+00:00Added an answer on June 2, 2026 at 10:02 pm

    The main issue I see is that the quantifier is misplaced

    /#{(\w+)}({([\ a-zA-Z0-9*])})*/U
                            ^
    

    should be outside the character class

    /#{(\w+)}({([\ a-zA-Z0-9]*)})*/U
    

    If the content in the following braces could be anything than you could do this

    /#\{(\w+)\}(\{([^}]*)\})*/U
    

    [^}] is a negated character class that matches anything but the closing curly bracket.

    I also escaped the curly braces, since they have a special meaning as part of a quantifier. Some languages will match them literally when they do not form such a quantifier, but for clarity its better to always escape them, when they should be matched.

    Update:

    You can make one of your groups an non-capturing group, since you don’t seem to need it

    /#\{(\w+)\}(?:\{([^}]*)\})*/
    

    this should give you this result

    array(4) {
      [0]=>
      string(42) "#{text1}{text with spaces}{numbers}{text2}"
      [1]=>
      string(5) "text1"
      [2]=>
      string(5) "text2"
    }
    

    but you will always get only the last match of the repeated group in your resulting array, because each match is stored at array[2]. The second match will overwrite the first, the third the second …

    What you could do is to use the regex for format validation and then do a split e.g. something like this

    $in = "#{text1}{text with spaces}{numbers}{text2}";
    $result = preg_split('/}{|#{|}/', $in, -1, PREG_SPLIT_NO_EMPTY);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create regular expression that filters from the following partial text: amd64
Trying to create a simple regular expression that can extract numbers(between 7 - 14)
I am trying to create a regular expression that checks for letters, numbers, and
I'm trying to create a regular expression that matches when the string starts with
I'm trying to create a regular expressions that will filter valid emails using PHP
I'm no expert on Regex. I'm trying to create a regular expression that will
this one is really easy. I'm trying to create a Regular Expression that will
I am trying to create a JavaScript regular expression that can find a keyword
I am trying to create a regular expression in C# that allows only alphanumeric
I am trying to create a regular expression that understands mathematical equations (>, <,

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.