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

  • Home
  • SEARCH
  • 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 9011417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T02:43:29+00:00 2026-06-16T02:43:29+00:00

I want to create an array from a string that contains brackets like {!

  • 0

I want to create an array from a string that contains brackets like {! !}. However the whitespaces at the beginning and at the end of the encapsulated string should not be displayed.

$string = "{! This should be in the output !} this should not be in the output {!show_in_output!} don't show {!   show   !}";
preg_match_all("/{!(.*)!}/Us", $string , $output);

The resulting array looks like this:

Array
(
    [0] => Array
        (
            [0] => {! This should be in the output !}
            [1] => {!show_in_output!}
            [2] => {!   show   !}
        )

    [1] => Array
        (
            [0] =>  This should be in the output 
            [1] => show_in_output
            [2] =>    show   
        )

)

But it should look like this:

Array
(
    [0] => Array
        (
...
        )

    [1] => Array
        (
            [0] => This should be in the output 
            [1] => show_in_output
            [2] => show   
        )

)

Is there a way to achieve this with a modified regex?
Thank you!

  • 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-16T02:43:30+00:00Added an answer on June 16, 2026 at 2:43 am

    The (.*) in the middle of /{!(.*)!}/ matches any characters between your {! and !}. If you want to NOT capture spaces before and after that, you have to match whitespace and not include the whitespace in your group, so in your case: /{!\s*(.*?)\s*!}/. The ? says to make a minimal match of the .* so that it doesn’t include the whitespace that you want matched by the second \s*.

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

Sidebar

Related Questions

Imagine that I want to create an array from another array like this: $array
I want to create an array which has two columns. The output should contain
I want to create an array that has multiple index and in each index
I have two List of array string. I want to be able to create
How can I create a String object from a byte array byte arr[MAX_SIZE]; //
I want to create an array of string out of a StringBuffer. I need
I have a column of data that contains strings, and I want to create
i want to create a text file from a string. currently i am using
I want to create an array of arrays in PowerShell. $x = @( @(1,2,3),
I want to create an array holding a function f(x,y,z) . If it were

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.