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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T16:04:02+00:00 2026-05-12T16:04:02+00:00

I need the best way of finding how many numbers in a string, would

  • 0

I need the best way of finding how many numbers in a string, would I have to first remove everything but numbers and then strlen?

Also how would I go about testing the performance of a any PHP script I have written, say for speed and performance under certain conditions?

UPDATE

say I had to inlcude ½ half numbers, its definetly preg then is it not?

  • 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-12T16:04:02+00:00Added an answer on May 12, 2026 at 4:04 pm

    You can just split the string with preg_split() and count the parts:

    $digits = count(preg_split("/\d/", $str))-1;
    $numbers = count(preg_split("/\d+/", $str))-1;
    

    For performance you could use microtime().

    eg:

    For execution time:

    $start = microtime(true);
    // do stuff
    $end = microtime(true)-$start;
    

    For memory usage:

    $start = memory_get_usage(true);
    // do stuff
    $end = memory_get_usage(true) - $start;
    

    http://us.php.net/manual/en/function.memory-get-usage.php

    For peak memory:

    memory_get_peak_usage(true);
    

    http://us.php.net/manual/en/function.memory-get-peak-usage.php

    There are also specific PHP profiling tools like XDebug.
    There is a good tutorial on using it with Eclipse:
    http://devzone.zend.com/article/2930

    There is also benchmark in PEAR:
    http://pear.php.net/package/Benchmark/docs/latest/Benchmark/Benchmark_Profiler.html

    And a list of others:
    http://onwebdevelopment.blogspot.com/2008/06/php-code-performance-profiling-on.html

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

Sidebar

Related Questions

I need help on the best way to design a database/tables for the following
Possible Duplicate: Best way to stop SQL Injection in PHP I need to secure
I need to work out the best way to read data that is being
I need some feedback on what is the best way to do what I
I've researched and need to find the best way to replace a need with
what's the best way to accomplish this task? (new to sharepoint) Do we need
I'm just looking for suggestions on the best way to do this... I need
I need to pass Cursor object to another activity, what is the best way
I'm wondering what is the best way to make data thread-safe. Specifically, I need
I need to write AVL-tree with generic type in C. The best way 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.