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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T20:19:10+00:00 2026-06-18T20:19:10+00:00

I have a script that does a bunch of calculations on IPV4 and IPV6

  • 0

I have a script that does a bunch of calculations on IPV4 and IPV6 address’s in their hex form

for example “70.02.03.04” would be

$ipv4=”\x46\x02\x03\x04″

This binary handle is hardcoded in my script. But now I want to generate this on the fly

I’m using “sprintf(“x%02x”, $value) for hex values, but how would I generate the binary handle as above?

  • 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-18T20:19:12+00:00Added an answer on June 18, 2026 at 8:19 pm

    You don’t want hex (a string representation of a number).

    my $hex = '46020304';
    

    You want the number as a four byte machine integer.

    my $uint32 = "\x46\x02\x03\x04";
    

    You can achieve this using

    my $packed = pack('C4', split /\./, '70.02.03.04');
    

    and with

    use Socket qw( inet_aton );
    my $packed = inet_aton('70.02.03.04');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm still learning Perl and CLASS::DBI. I have a script that does a bunch
I have a script that does a bunch of things and I want to
I have a script that does an update function live. I would move it
I have a script that does a whole bunch of fread and fseek calls
i have a script that does a lot of processing on some rows from
Currently we have a script that does maven build + tomcat deploy. Deploying to
So, I have GreaseMonkey Script that does some operations with integers and then sets
I have a bash script that does ssh to a remote machine and executes
I have a PHP script that does the following: Uses file_get_contents() to get content
I have a ColdFusion script that does: <cfset content = replace(content,&##147;,,all)> Which replaces &147;

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.