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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T03:08:19+00:00 2026-05-19T03:08:19+00:00

I have a 32-bit integer value and I want to translate that into two

  • 0

I have a 32-bit integer value and I want to translate that into two decimal values. One value from the 5 least significant bits and one decimal value from the rest of the bits (27 bits).

How would I do that in Java?

The only solution I can think of is something like this:


int i = 1073326082;
String binaryString = Integer.toBinaryString(i);
int fiveLeastSigValue = Integer.parseInt(binaryString.substring(27), 2));
int theRest = Integer.parseInt(binaryString.substring(0, 27), 2));

But im sure there is some more efficient way to do this. Any ideas?

  • 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-19T03:08:19+00:00Added an answer on May 19, 2026 at 3:08 am

    Well, I’d imagine:

    int value = ...;
    int leastSignificant = value & 0x1f; // Bottom 5 bits
    int mostSignificant = value >> 5; // Top 27 bits
    

    Adjust the shift operator to “>>>” if you want to 0-extend (i.e. always have positive values).

    I’m not sure what you mean by “partial decimal value” though – “decimal” is usually used to refer to non-integers, but you’re parsing integers. Is this what you want?

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

Sidebar

Related Questions

We have a file that has a 64 bit integer as a string in
I have a 256-bit value in Verilog: reg [255:0] val; I want to define
I have signed numbers (2s complement) stored in 32-bit integers, and I want to
I have a bit of code that basically reads an XML document using the
I have a bit of code that passes around a ton of objects and
I have a multi-byte primitive type called s32 which I want to read from
I have a hexadecimal value, 07A5953EE7592CE8871EE287F9C0A5FBC2BB43695589D95E76A4A9D37019C8 Which I want to convert to a byte
This method that uses method-level generics, that parses the values from a custom POJO,
I have this bit of javascript written with jQuery 1.2.5. It's contained inside the
I have a bit of a hybrid situation on my hands. I'm writing an

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.