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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T01:46:44+00:00 2026-05-31T01:46:44+00:00

So basically I need to check if a string has 3 or more groups

  • 0

So basically I need to check if a string has 3 or more groups of separated digits, example:

words1 words2 111 222 333      //> YES, it has 3 groups of digits (separated by space)

words 1 2                      //> NO

words 2011 words2 2012 2013    //> YES

I was thinking something like

preg_match('/(\b\d+\b){3,}/',$string)

But it’s not working at all (always return false)

Thansk to @Basti i am using this regex now:

'/(\D*\d+\D*){3,}/'
  • 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-31T01:46:45+00:00Added an answer on May 31, 2026 at 1:46 am

    Your regular expression is saying “Find one or more digits at least three times”. What you actually want is: “Find two or more digits surrounded by something I don’t care about at least three times.”:

    preg_match("/(\D*\d{2,}\D*){3,}/", $string)
    

    The problem with your expression is that you are not allowing anything other than digits and word bounds.

    Test: var_dump(preg_match('/(\D*\d{2,}\D*){3,}/',$string, $match), $match); on your three strings.

    int 1
    array
      0 => string ' 111 222 333' (length=12)
      1 => string '333' (length=3)
    int 0
    array
      empty
    int 1
    array
      0 => string ' 2012 2013' (length=10)
      1 => string '13' (length=2)
    

    yes123 note:

    I am using this function I wrote, it can check for any numbers of groups:

    function countDigits($haystack) {
        preg_match_all('/\b\d+\b/',$haystack,$matches);
        return count($matches[0]);
    }
    
    echo countDigits('2011 abc 2012'); //> prints 2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I basically need a function to check whether a string's characters (each character) is
I need to check if a string is found in one or more columns.
I need to check a string to see if any word in it has
I'm very new to PHP. I need to check whether a given string has
I basically need to check if there is an easier way to do this
Ok so basically I need to check,whether in my menu #Container exist any third
Basically, i need to check for a word's occurances within multiple files. Also, a
Basically, my situation requires me to check to see if the String that is
I want to check if a string contains only digits. I used this: var
Basically need to generate custom(some different then yes no) messeges(alert) in JS , how

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.