The conversion tag has no wiki summary.
1
vote
0answers
153 views
Convert Regexes
Suppose you have existing regexes you wish to compile using one of the submissions to Compile Regexes. In as few characters as possible, write a program to make that work.
Equivalent constructs
For ...
5
votes
9answers
422 views
Generate excel column name from index
This one comes from a real life problem. We solved it, of course, but it keeps feeling like it could have be done better, that it's too lengthy and roundabout solution. However none of my colleagues ...
-5
votes
7answers
282 views
Reversing base numbers
Where input is binary - output the decimal reversed equivalent and vice versa for decimal input:
Sample Input:
00000001
00000010
255
00011000
Sample Output
1
2
1000101000
42
other Sample Input
...
2
votes
1answer
122 views
Check printer - Convert to English text from the input value.
Check printer function (or subroutine) - Convert to English text from the input value. 12.34 -> "twelve dollars and thirty four cents". For the range .01 to 9999.99 assuming valid input.
10
votes
29answers
860 views
IPv4 Integer Conversion Function
Write the shortest function to convert an IP address into it's integer representation and output it as an integer.
To change an IPv4 address to it's integer representation, the following calculation ...