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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T05:12:43+00:00 2026-05-12T05:12:43+00:00

I would like to ask for help with this, I wanted to check for

  • 0

I would like to ask for help with this, I wanted to check for a string
matching a decimal followed by a letter (15M, 15.3M, 15T or 15.3T) and
replace it with zeroes.

Like these:
15M -> 15000000
15.3M -> 15300000
15T -> 15000
15.3T -> 15300

I tried doing this with str_replace but can’t get it right. Hope
someone can help me.

  • 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-12T05:12:43+00:00Added an answer on May 12, 2026 at 5:12 am

    “T” could be “thousand” or “trillion”, you know.

    $s = "15.7T";
    
    $factors = Array('T' => 1000, 'M' => 1000000, 'B' => 1000000000.);
    
    $matches = Array();
    if (0 < preg_match('/([0-9]+(?:\.[0-9]*)?)([TMB])/', $s, $matches)) {
        print("$s -> " . $matches[1] * $factors[$matches[2]]);
    }
    

    prints:

    15.7T -> 15700
    

    edit:

    Anchoring (makes any garbage on the front or back mean no match):

    '/^(...)$/'
    

    You may want to make whitespace allowed, however:

    '/^\s*(...)\s*$/'
    

    You can also use “\d” in place of “[0-9]:

    '/(\d+(?:\.\d*)?)([TMB])/'
    

    Case insensitivity:

    '/.../i'
    ...
    print("$s -> " . $matches[1] * $factors[strtoupper($matches[2])]);
    

    Optional factor:

    '/([0-9]+(?:\.[0-9]*)?)([TMB])?/'
    $value = $matches[1];
    $factor = isset($matches[2]) ? $factors[$matches[2]] : 1;
    $output = $value * $factor;
    

    Use printf to control output formatting:

    print($value) -> 1.57E+10
    printf("%f", $value);  -> 15700000000.000000
    printf("%.0f", $value);  -> 15700000000
    

    Stephan202 recommended a clever trick, put the “?” (optional) within the parens and you’re guaranteed a match string, it just might be blank. Then you can use the blank as an array key to get the default value without having to test whether it matched or not.

    Putting all that together:

    $factors = Array('' => 1, 'T' => 1e3, 'M' => 1e6, 'B' => 1e9);
    if (0 < preg_match('/^\s*(\d+(?:\.\d*)?)([TMB]?)\s*$/i', $s, $matches)) {
        $value = $matches[1];
        $factor = $factors[$matches[2]];
        printf("'%s' -> %.0f", $s, $value * $factor);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to ask for a reccomended solution for this: We have a
I would like to ask for some simple examples showing the uses of <div>
I would like to ask you which automated build environment you consider better, based
I would like to ask how licensing works on multiple instances? Suppose that I
Just like Carl's question over here I would like to ask you (because I
I have already posted something similar here but I would like to ask the
I would like to test a string containing a path to a file for
sorry for any inconveniece caused. Would like to ask about database or rather databinding
I agree with this answer and like it but i really would rather have
I've been stuck on this for a while so I thought I would ask.

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.