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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T16:53:14+00:00 2026-06-03T16:53:14+00:00

I need to match the last integer in a string and capture possible elements

  • 0

I need to match the last integer in a string and capture possible elements before and after the last integer, assuming that the string can be composed of a single integer or a combination of text and/or integers.
Let say that $str can be:

  • ‘123’ -> ” – 123 – ”
  • ‘abc 123’ -> ‘abc ‘ – 123
  • ‘abc 123 def’ -> ‘abc ‘ – 123 – ‘ def’
  • ‘abc 123 def 456’ -> ‘abc 123 def ‘ – 456
  • etc.

I expected that the following piece of code in php would do the job:

$str = 'abc 123 def 456 ghi';
preg_match('/(.*)(\d+)(\D*)$/', $str, $matches);
echo 'Matches = ' . implode(' : ', $matches);

But the (\d+) is picking up only one digit:

 Matches = abc 123 def 456 ghi : abc 123 def 45 : 6 :  ghi

While I was expecting:

 Matches = abc 123 def 456 ghi : abc 123 def  : 456 :  ghi

I get the same behavior in Javascript.
The (.*) is that greedy to impinge on (\d+)?

Thanks in advance!

  • 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-03T16:53:17+00:00Added an answer on June 3, 2026 at 4:53 pm

    You can completely avoid the .* as the “\D*$” at the end of the pattern would make sure it is the last number.

    It is also recommended that you don’t add unnecessary parenthesis and only get what you really need. That is to say that you could do the following to only get the last number:

    preg_match('/(\d+)\D*$/', $str, $matches);
    

    If you do need the match on the other portions of the string, though, and the number you are looking for will be its own word you could add to that regexp the \b parameter before the (\d+) so that the (.*) won’t greedily consume part of your number. i.e.:

    preg_match('/(.*)\b(\d+)(\D*)$/', $str, $matches);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a regex expression (PCRE) to match a integer number inside a string,
I need to extract the last number that is inside a string. I'm trying
I need to find a regex that will match any string, at least 6
I need to match an alphanumeric word. It can contain - but not at
I am trying to match elements that have no other children elements, but also
In short, I need to match all URLs in a block of text that
I need to grab a string like /html/body/a i need to check the last
I need to match ANY strings that start with: '/Engine and end with: ir_vrn'
I have an asp.net regularexpressionvalidator that I need to match on a textbox. If
I need a formula to return the value of Data for the last match

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.