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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:40:23+00:00 2026-05-10T18:40:23+00:00

Do you know an easy and straight-forward method/sub/module which allows me to convert a

  • 0

Do you know an easy and straight-forward method/sub/module which allows me to convert a number (say 1234567.89) to an easily readable form – something like 1.23M?

Right now I can do this by making several comparisons, but I’m not happy with my method:

if($bytes > 1000000000){     $bytes = ( sprintf( '%0.2f', $bytes/1000000000 )). ' Gb/s';                    } elsif ($bytes > 1000000){           $bytes = ( sprintf( '%0.2f', $bytes/1000000 )). ' Mb/s';  } elsif ($bytes > 1000){    $bytes = ( sprintf( '%0.2f', $bytes/1000 )). ' Kb/s';  } else{     $bytes = sprintf( '%0.2f', $bytes ). 'b/s'; }                                                                   

Thank you for your help!

  • 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. 2026-05-10T18:40:23+00:00Added an answer on May 10, 2026 at 6:40 pm

    The Number::Bytes::Human module should be able to help you out.

    An example of how to use it can be found in its synopsis:

      use Number::Bytes::Human qw(format_bytes);    $size = format_bytes(0); # '0'   $size = format_bytes(2*1024); # '2.0K'    $size = format_bytes(1_234_890, bs => 1000); # '1.3M'   $size = format_bytes(1E9, bs => 1000); # '1.0G'    # the OO way   $human = Number::Bytes::Human->new(bs => 1000, si => 1);   $size = $human->format(1E7); # '10MB'   $human->set_options(zero => '-');   $size = $human->format(0); # '-' 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 156k
  • Answers 156k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Looks like the formatting on your post is way off,… May 12, 2026 at 10:54 am
  • Editorial Team
    Editorial Team added an answer Here is a way I would do it. Offensive/Defensive Quality… May 12, 2026 at 10:54 am
  • Editorial Team
    Editorial Team added an answer You just need to choose a way of storing 128… May 12, 2026 at 10:54 am

Related Questions

How do I pass along an event between classes? I know that sounds ridiculous
Optimization of PHP code via runtime benchmarking is straight forward. Keep track of $start
I've only been using SSIS briefly, but I find that my complaints are numerous.
We're currently building a system that abstracts all kinds of technical details about web

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.