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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:57:48+00:00 2026-05-26T14:57:48+00:00

Consider that i have the string, $string = ‘tag2 display=users limit=5’; Using the preg_match_all

  • 0

Consider that i have the string,

$string = 'tag2 display="users" limit="5"';

Using the preg_match_all function, i need to get the output

Required o/p

Array
(
    [0] => Array
        (
            [0] => tag2
            [1] => tag2
            [2] => 
        )

    [1] => Array
        (
            [0] => display="users"
            [1] => display
            [2] => users
        )

    [2] => Array
        (
            [0] => limit="5"
            [1] => limit
            [2] => 5
        )

)

I tried using this pattern '/([^=\s]+)="([^"]+)"/' but it is not recognizing the parameter with no value (in this case tag2) Instead it gives the output

What I am getting

Array
(
    [0] => Array
        (
            [0] => display="users"
            [1] => display
            [2] => users
        )

    [1] => Array
        (
            [0] => limit="5"
            [1] => limit
            [2] => 5
        )

)

What will be the pattern for getting the required output ?

EDIT 1: I also need to get the attributes which are not wrapped with quotes ex: attr=val. Sorry for not mentioning before.

  • 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-26T14:57:49+00:00Added an answer on May 26, 2026 at 2:57 pm

    I think it’s not fully possible to give you with one call what you’re looking for, but this is pretty close:

    $string = 'tag2 display="users" limit=5';
    preg_match_all('/([^=\s]+)(?:="?([^"]+)"?|())?/', $string, $res, PREG_SET_ORDER);
    print_r($res);
    

    Output:

    Array
    (
        [0] => Array
            (
                [0] => tag2
                [1] => tag2
                [2] => 
                [3] => 
            )
    
        [1] => Array
            (
                [0] => display="users"
                [1] => display
                [2] => users
            )
    
        [2] => Array
            (
                [0] => limit=5
                [1] => limit
                [2] => 5
            )
    
    )
    

    As you can see, the first element has no value, I tried to work around that and offer an empty match now. So this builds the array you were asking for, but has an additional entry on the empty attribute.

    However the main point is the PREG_SET_ORDER flag of preg_match_all. Maybe you can live with this output already.

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

Sidebar

Related Questions

I have a single AMQ queue that receives simple messages with string body. Consider
Consider that I have a transaction: BEGIN TRANSACTION DECLARE MONEY @amount SELECT Amount AS
Lets consider that I have a public property called AvatarSize like the following, public
Assume that we have multiple arrays of integers. You can consider each array as
I have a configuration file that I consider to be my base configuration. I'd
Let's consider we have QWidget that contains QTableWidget (only). So we want to resize
Consider following scenario: I have RESTful URL /articles that returns list of articles user
I have what I would consider a small sized iPhone app that uses SQLite.
Consider this scenario. I have my own website, that I use as my identifier,
Consider a situation. I have an in-proc COM server that contains two COM classes.

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.