vote up 3 vote down star
1

How can I convert the following?

2934 (integer) to B76 (hex)

Let me explain what I am trying to do. I have User ID's in my database that are stored as integers. Rather than having users reference their ID's I want to let them use the hex value. Main reason is because it's shorter.

So not only do I need to go from int to hex but I also need to go from hex to int.

Is there an easy way to do this in C#?

flag

4  
FYI, you will be offending Numeric keypad users. – Daniel A. White Jul 16 at 20:06
You have a good point. But we're trying to convert the integer ID into something that takes up fewer characters. Thanks for the insight tho. – codette Jul 16 at 20:24

6 Answers

vote up 4 vote down check
// Store integer 182
int decValue = 182;
// Convert integer 182 as a hex in a string variable
string hexValue = decValue.ToString("X");
// Convert the hex string back to the number
int decAgain = int.Parse(hexValue, System.Globalization.NumberStyles.HexNumber);

from http://www.geekpedia.com/KB8_How-do-I-convert-from-decimal-to-hex-and-hex-to-decimal.html

link|flag
you can also specify the number of digits by using: decValue.ToString("X4") – mutzel Oct 27 at 9:04
vote up -1 vote down

To go from integer to hex string, use Int32.ToString().

To go from hex string to integer, use Convert.ToInt32().

Example:

int UserId = 1234;

string UserIdToString = UserId.ToString("X"); // goes from integer to hex string

int UserIdFromString = Convert.ToInt32(UserIdToString); // goes from hex string to integer
link|flag
The link for Convert.ToInt32() goes to Convert.ToInt32(Int32), and your code example uses Convert.ToInt32(string). Neither will do what you say they will -- try Convert.ToInt32(UserIdToString, 16) instead. – Whatsit Sep 28 at 22:20
vote up 0 vote down

To Hex:

string hex = intValue.ToString("X");

To int:

int intValue = int.Parse(hex, System.Globalization.NumberStyles.HexNumber)
link|flag
vote up 2 vote down

Try the following to convert it to hex

public static string ToHex(this int value) {
  return String.Format("0x{0:X}", value);
}

And back again

public static int FromHex(string value) {
  if ( value.StartsWith("0x", StringComparison.OrdinalIgnoreCase)) {
    value = value.SubString(2);
  }
  return Int32.Parse(value, NumberStyles.HexNumber);
}
link|flag
Not terribly sure why I deserved a -1 but I guess I offended someone. – JaredPar Jul 16 at 20:09
Maybe they had a problem with how you spelt format? O_o – LFSR Consulting Jul 16 at 20:10
2  
or the "0x" bit, which is something the OP didn't really want – Philippe Leybaert Jul 16 at 20:11
i corrected the format spelling - but didn't downvote. downvotes with no explanation make me grumpy too... – Scott Ivey Jul 16 at 20:12
@Philippe, perhaps but it seems like a very silly thing to downvote for. Especially considering half the answers didn't originally have the hex -> int part – JaredPar Jul 16 at 20:14
show 3 more comments
vote up 1 vote down
string HexFromID(int ID)
{
    return ID.ToString("X");
}

int IDFromHex(string HexID)
{
    return int.Parse(hex, System.Globalization.NumberStyles.HexNumber);
}

I really question the value of this, though. You're stated goal is to make the value shorter, which it will, but that isn't a goal in itself. You really mean either make it easier to remember or easier to type.

If you mean easier to remember, then you're taking a step backwards. We know it's still the same size, just encoded differently. But your users won't know that the letters are restricted to 'A-F', and so the ID will occupy the same conceptual space for them as if the letter 'A-Z' were allowed. So instead of being like memorizing a telephone number, it's more like memorizing a GUID (of equivalent length).

If you mean typing, instead of being able to use the keypad the user now must use the main part of the keyboard. It's likely to be more difficult to type, because it won't be a word their fingers recognize.

A much better option is to actually let them pick a real username.

link|flag
The goal really is to take up fewer characters. Take twitter for example where they only allow 140 character messages. We're doing something similar so we're trying to give our users a way of shortening their user ID. – codette Jul 16 at 20:41
In that case, you should think about a binary representation. This is likely a 32bit int that just doesn't use the negative portion, meaning 16bits of resolution. You can put that in one unicode character pretty easily. – Joel Coehoorn Jul 16 at 21:14
vote up 6 vote down
int myInt = 2934;
string myHex = myInt.ToString("X");  // gives you hex
int myNewInt = Convert.ToInt32(myHex, 16);  // back to int again.

see here for more info & examples - http://msdn.microsoft.com/en-us/library/bb311038.aspx.

link|flag
Beat me by 8 seconds. – Joel Coehoorn Jul 16 at 20:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.