Tagged Questions
The base-convert tag has no wiki summary.
3
votes
3answers
599 views
base_convert in .NET
Does .NET have a native function that is equivalent to PHP's base_convert or will I need to write my own? I want to convert from any base to any other base -- where either the 'to' base or the 'from' ...
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";
...
1
vote
5answers
2k views
PHP - Generate an 8 character hash from an integer
Is there a way to take any number, from say, 1 to 40000 and generate an 8 character hash?
I was thinking of using base_convert but couldn't figure out a way to force it to be an 8 character hash.
...
0
votes
5answers
86 views
Random string gets repeated?
I have a service on the internet where people post pictures and a short string is generated. Only one can be used ever. However, I am getting into duplicates in the database and I am seeing major ...