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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T03:29:15+00:00 2026-05-25T03:29:15+00:00

preg_match returns only the first result. lets say I have the string abcabcabc and

  • 0

preg_match returns only the first result.
lets say I have the string abcabcabc and I wanna find ALL indexes of ABC. (ofcourse mine is a bit more complex…) – how can I do it ?
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-05-25T03:29:16+00:00Added an answer on May 25, 2026 at 3:29 am

    preg_match_all

    You simply have to pass in a variable as the third argument that will be loaded up with all your matches.

    Example

    <?php
    $pattern = "/{[^}]*}/";
    $subject = "{token1} foo {token2} bar";
    preg_match_all($pattern, $subject, $matches);
    print_r($matches);
    ?>
    

    output:

    Array
    (
        [0] => Array
            (
                [0] => {token1}
                [1] => {token2}
            )
    
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

preg_match() gives one match. preg_match_all() returns all matches. preg_split() returns all splits. How can
There has always been a confusion with preg_match in php. I have a string
I can't get the preg_match to find a word anywhere a the string. I
I have the following regex: $string = 'font-size:12em;'; $pattern = '@:[A-Za-z0-9.]+;@i'; preg_match($pattern, $string, $matches);
How would I use the PHP function preg_match() to test a string to see
need a simply preg_match, which will find c.aspx (without quotes) in the content if
I'm trying to extract only certain elements of a string using regular expressions and
hey guys, a curl function returns a string $widget that contains regular html ->
Having regex issues.. I have a series of directories that hold .htm templates... all
if (preg_match('(\p{Nd}{4}/\p{Nd}{2}/\p{Nd}{2}/\p{L}+)', '2010/02/14/this-is-something')) { // do stuff } The above code works. However this

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.