Tagged Questions
Base conversion is changing the base of the text representation of a number to another base. For example, "1010" in binary to "10" in decimal is a base conversion.
30
votes
4answers
21k views
Converting an integer to a hexadecimal string in Ruby
Is there a built in way to convert an integer in Ruby into its hexadecimal equivalent.
The opposite of
"0A".to_i(16)
=>10
or
"0A".hex
=>10
I know how to roll my own, but it's probably ...
5
votes
2answers
259 views
Unlimited-size base conversion?
Temporary note to the idiot who's chain-downvoting my questions
Please stop. If you hold some kind of grudge against me I'd appreciate it if you'd tell me that instead of silently downvoting ...
5
votes
6answers
776 views
Getting a hexadecimal number into a program via the command line
I can do this:
int main(int argc, char** argv) {
unsigned char cTest = 0xff;
return 0;
}
But what's the right way to get a hexadecimal number into the program via the command line?
unsigned ...
5
votes
5answers
2k views
Print large base 256 array in base 10 in c
I have an array of unsigned chars in c I am trying to print in base 10, and I am stuck. I think this will be better explained in code, so, given:
unsigned char n[3];
char[0] = 1;
char[1] = 2;
char[2] ...
4
votes
2answers
83 views
Converting decimal to binary
I want to convert decimal number in binary number. I'm using this method:
- (NSMutableString*)intStringToBinary:(long long)element{
NSMutableString *str = [[NSMutableString alloc] ...
3
votes
3answers
126 views
Optimizing Base Conversion Loop
So, for my Cryptography Library, I have a base converter that I use quite often. It's not the most efficient thing in the world, but it works quite well for all ranges of input.
The bulk of the work ...
3
votes
4answers
639 views
Decimal-to-binary conversion
I want to convert decimal numbers to binary numbers. I want to store them in an array.
First I need to create an array that has a certain length so that I can store the binary numbers. After that I ...
3
votes
6answers
2k views
Base conversion of arbitrary sized numbers (PHP)
I have a long "binary string" like the output of PHPs pack funtion.
How can I convert this value to base62 (0-9a-zA-Z)?
The built in maths functions overflow with such long inputs, and BCmath doesn't ...
2
votes
1answer
45 views
base_convert and negative numbers
The base_convert() function doesn't seem to preserve the sign.
For example:
var_dump (base_convert ('-100', 10, 10));
The output of this is 100
Is there a way of converting bases without ...
2
votes
3answers
1k views
Convert large hex string to decimal string
I need to convert a large (too large for the built-in data types) hex string to a string with it's decimal representation. For example:
std::string sHex = "07AA17C660F3DD1D2A1B48F1B746C148";
...
2
votes
5answers
2k views
PHP - How to base_convert() up to base 62
I need a base_convert() function that works from base 2 up to base 62 but I'm missing the math I need to use, I know that due to the limitations of PHP I need to make use of bcmath, which is fine.
...
2
votes
4answers
236 views
How can I output a number as a string of bits in C#?
In C#, how can I output a number as binary to the console? For example, if I have a uint with the value of 20, how can I print to the console: 00010100 (which is 20 in binary)?
1
vote
1answer
56 views
c++ template for conversion between decimal and arbitrary base
Is there a c++ structure or template (in any library) that allows me to do conversion between decimal and any other base (much like what bitset can do) ?
1
vote
3answers
122 views
PHP: Will this function always generate a unique string?
Will this following function always generate a unique string? What will be the length range of generated string from the following function? Can it be improved to generate more uniqueness?
...
1
vote
3answers
66 views
Why is it useful to know how to convert between numeric bases?
We are learning about converting Binary to Decimal (and vice-versa) as well as other base-conversion methods, but I don't understand the necessity of this knowledge.
Are there any real-world uses for ...
1
vote
4answers
341 views
PL/SQL base conversion without functions
Is there any way to convert decimal to binary, or binary to decimal, in Oracle 10g without having to first define a function? I have limited database access (SELECT only) and all the solutions for ...
1
vote
6answers
554 views
converting from base 10 to base 31 (working only with select characters)
I'd like to convert base 10 numbers to base 31
I would like to use only these characters: 23456789abcdefghjkmnpqrstuvwxyz
As you can see, 5 characters are excluded (i don't need these): 1 0 o l i
...
0
votes
3answers
98 views
Reading and setting base 3 digits from base 2 integer
Part of my application data contains a set of 9 ternary (base-3) "bits". To keep the data compact for the database, I would like to store that data as a single short. Since 3^9 < 2^15 I can ...
0
votes
0answers
105 views
Conversion between Zeckendorf and Golden Ratio Base
Zeckendorf and Golden Ratio Base are clearly closely related, but still it seems tricky to convert from one to the other. I know that there is work by Frougny and Sakarovitch on this, but I haven't ...
0
votes
2answers
689 views
How can I convert a number in a string to any base in assembly?
How can I convert a number contained in a string from any base to any other base?
Bases can be anything i.e.: 2, 16, 10, 4, 8, 9.
I'm expecting the user to enter the base number. The user will enter ...
0
votes
1answer
313 views
Convert hex to decimal in make script?
A make script is attempting to set a variable as follows:
VER_DEC=$( perl -e "print hex(\"$(VER_HEX)\");" )
where VER_HEX happens to have a value of 0a.
Perl seems to think that VER_HEX is zero, ...
0
votes
1answer
334 views
Converting non-decimal numbers to another non-decimal
Not that it's a lot of work, but the only way I know to convert a non-decimal to another non-decimal is by converting the number to decimal first, then take a second step to convert it to a new base. ...
0
votes
2answers
220 views
ICertRequest2::Submit CSR data Compatability ASCII to BSTR
I have my certrequest as a PEM base64 data. See data below.
1) My understanding is that this is an ASCII data type and not in
UNICODE format. Please clarify.
-----BEGIN NEW CERTIFICATE REQUEST-----
...
-4
votes
7answers
1k views
algorithm to convert a number in an unknown base to the equivalent base 10 number
Given an integer, write a program that converts the given number to a number (in base 10). Hint - The given number could be in any base, but the base is unknown.