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"
|
|
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"
|
|||
|
|
|
try
|
||||
|
|
|
If you want exactly 3 characters and are sure the number is in range, use:
If you aren't sure if the number is in range, this will give you more than 3 digits. You could do something like:
Use a lower case "x3" if you want lower-case letters. |
||
|
|
|
The easy C solution may be adaptable:
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 |
||||
|
|
|
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. |
||
|