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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T14:39:40+00:00 2026-06-01T14:39:40+00:00

So lets say I have an string like so. $pizza = 1,2,3,5-4,7; and what

  • 0

So lets say I have an string like so.

$pizza = 1,2,3,5-4,7;

and what I want to get out of it is the 5-7 out of that set but that 5-7 could be any combo, say 6-9 or 10-1 and this occur multiple times.

Such as

$pizza=1-4,2,3-1,5-4,7;

Then I got help to use

preg_match_all("/(\d\-\d)/", $pizza, $return);

Which gives me this

print_r($return);

Array ( [0] => Array ( [0] => 5-7 ) [1] => Array ( [0] => 5-7 ) )

So how do I get that value (5-7) and assign it to a variable like $slice

  • 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-01T14:39:41+00:00Added an answer on June 1, 2026 at 2:39 pm

    You should already know the synopsis of preg_match_all.

    The third parameter is an array that contains all the matches found in your text (second parameter).

    It is a array containing a set of different array: The first one contains al the pattern matched. The others are the matches of subpatterns. I’m not here to write an essay on regular expression then I will assume that you know them (a refresh: subpatterns are those things enclosed by parentheses and, in your case, are quite useless).

    $pizza='1-4,2,3-1,5-4,7';
    preg_match_all("/\d\-\d/", $pizza, $return);
    var_dump($return);
    

    Will have a similar, less confusing, result (there are not parens in the regex).

    array
      0 => 
        array
          0 => string '1-4' (length=3)
          1 => string '3-1' (length=3)
          2 => string '5-4' (length=3)
    

    If you find easier the print_r format:

    Array ([0]=>Array([0]=>1-4 [1]=>3-1 [2]=>5-4))
    

    To consume an array one element at a time you can use the foreach control structure.

    The code to do your exercise should be similar to this:

    foreach ($return[0] as $slice) {
        <do whatever you need with $slice >
    }
    

    The code in the braces will run as many times as elements into the array $return[0] (the array with the matched slices) and $slice will assume the value of the different elements
    in the different runs.

    Hope this solves your doubts.

    Said that I would have used a different approach to solve your task:

    $pizza='1-4,2,3-1,5-4,7';
    $return = array_filter(
        explode(',',$pizza), // turn the string into an array
        function($x){return strpos($x,'-');} // filter out the slices without a -
    );
    
    foreach ($return as $slice) { // NOTE: no $return[0]
        <do whatever you need with $slice >
    }
    

    But this is just a matter of personal taste since the differences in performance are negligible with such a little data amount to manipulate.

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

Sidebar

Related Questions

lets say I have a string that I want to split based on several
Lets say I have a string that represents a date that looks like this:
So lets say I have an string like so. $pizza = 1,2,3,5-4,7; and what
Let's say I have a string that I retrieve from a DB like: Lorem
lets say I have a String like this [{ name : Ronald , firstname
Lets say I have a div like this: <div id=test class=sourcecode> Some String </div>
Lets say you have various objects of arbitrary type that you would like to
Let's say that I have a two word string and I want to capitalize
Lets say I have string like this: String q = foo (one) bla (two)
Lets say I have an array like this: string [] Filelist = ... I

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.