vote up 1 vote down star

I want to convert a number between 0 and 4096 ( 12-bits ) to its 3 character hexadecimal string representation in C#.

Example:

2748 to "ABC"
flag

69% accept rate
Is this a code problem or assignment OR are you simply trying to cross this hurdle? For the latter String.Format with some magic incantation gets the job done. – Gishu Sep 27 '08 at 2:53

4 Answers

vote up 3 vote down check

try

2748.ToString("X")
link|flag
Muxa is right :) – Josh Sep 27 '08 at 2:53
Note that if your integer is less than or equal to 255, you won't get 3 characters out of this. – Blair Conrad Sep 27 '08 at 3:02
vote up 1 vote down

If you want exactly 3 characters and are sure the number is in range, use:

i.ToString("X3")

If you aren't sure if the number is in range, this will give you more than 3 digits. You could do something like:

(i % 0x1000).ToString("X3")

Use a lower case "x3" if you want lower-case letters.

link|flag
% is a pretty expensive operation. (i & 0x0FFF).ToString("X3") is functionally similar, and much faster (although I would hope the compiler produces the same code either way) – Adam Davis Sep 27 '08 at 14:44
vote up 1 vote down

The easy C solution may be adaptable:

char hexCharacters[17] = "0123456789ABCDEF";
void toHex(char * outputString, long input)
{
   outputString[0] = hexCharacters[(input >> 8) & 0x0F];
   outputString[1] = hexCharacters[(input >> 4) & 0x0F];
   outputString[2] = hexCharacters[input & 0x0F];
}

You could also do it in a loop, but this is pretty straightforward, and loop has pretty high overhead for only three conversions.

I expect C# has a library function of some sort for this sort of thing, though. You could even use sprintf in C, and I'm sure C# has an analog to this functionality.

-Adam

link|flag
Sorry, this is a C# specific question, Thanks anyways. – Justin Tanner Sep 27 '08 at 3:01
Well, the thing is, Justin Tanner, he showed the algorithm perfectly. – TraumaPony Sep 27 '08 at 3:03
vote up 1 vote down

Note: This assumes that you're using a custom, 12-bit representation. If you're just using an int/uint, then Muxa's solution is the best.

Every four bits corresponds to a hexadecimal digit.

Therefore, just match the first four digits to a letter, then >> 4 the input, and repeat.

link|flag
2748.ToString("X") results in "ABC" not "0ABC" – Justin Tanner Sep 27 '08 at 3:04

Your Answer

Get an OpenID
or

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