3
votes
3answers
93 views
What’s the shortest regex that can match non-zero floating point numbers with any number of decimal places?
What's the shortest regex that can match non-zero floating point numbers with any number of decimal places?
It should accept numbers like
-1
-5.9652
-7.00002
-0.8
-0.0500
-0.58000
0.01
0.000005
…
0
votes
3answers
36 views
Colorize negative/positive numbers (jQuery)
I'd like to color numbers in a table for better readability:
green for positive (+00.00);
red for negative (-00.00) and;
black for default case (no sign)
Many thanks!
0
votes
4answers
37 views
is_number function doesn’t work for me - unix shell
When I pass in 2009 as a arg to this shell function it returns 0, why?
isyear()
{
case $arg in
[0-9][0-9][0-9][0-9]) NUM=1 ;;
*) NUM=0 ;;
esac
echo $arg
}
1
vote
0answers
134 views
How might I convert integer values into words (for instance, 1006 becomes “one thousand and 6”)? [closed]
Possible Duplicates:
Convert an Integer to a string of words
How to convert a number to word form? eg: “72” to “Seventy two”
I want to convert an integer into a …
-1
votes
2answers
78 views
Reflectively determining if a member type is a number in C# [closed]
Possible Duplicate:
C# - how to determine whether a Type is a number
Are there any convenience methods for determining if a Type is the type of a number in C# ? I know that in Java, you …
0
votes
4answers
114 views
Why doesn’t this division work in python?
>>> numerator = 29
>>> denom = 1009
>>> print str(float(numerator/denom))
0.0
I just want it to return a decimal...
6
votes
9answers
168 views
Can coordinates of constructable points be represented exactly?
I'd like to write a program that lets users draw points, lines, and circles as though with a straightedge and compass. Then I want to be able to answer the question, "are these three points …
4
votes
2answers
199 views
How to round *down* integers in Java?
I'd like to round integers down to their nearest 1000 in Java.
So for example:
13,623 rounds to 13,000
18,999 rounds to 18,000
etc
0
votes
5answers
162 views
Java recursion phone number letters
How do you write a java program using a recursive method that takes in an int like "234" and converts this into the corresponding letters on a phone pad (2 = ABC, 3 = DEF, etc), and prints out the …
0
votes
5answers
157 views
Check if string contains only digits
Hello
I want to check if a string contains only digits. I used this:
var isANumber = isNaN(theValue) === false;
if (isANumber){
..
}
.. but realized that it also allows + and -. Basically I …
7
votes
4answers
241 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
0
votes
4answers
87 views
C# Numeric formatting question
Hi, I have these numbers:
5.25
10251.35
5
and I want them to be formatted with groups and always with 2 decimals ,XX
this is what .ToString("N2") does:
5,25
10.251,35
5
How can i make the '5' …
1
vote
4answers
117 views
Using the right numeric data type
After becoming more engaged with training new engineers as well as reading Jon Skeet's DevDays presentation I have begun to recognize many engineers aren't clear when to use which numeric datatypes …
2
votes
3answers
208 views
How to convert numbers to words in Erlang?
I found this interesting question about converting numbers into "words":
http://stackoverflow.com/questions/309884/code-golf-number-to-words
I would really like to see how you would implement this …
2
votes
6answers
124 views
How many possible URLs can you make with the following characters?
I want to make a short URL service for 2 million assets but I want to use the shortest number of possible characters.
What is the math equation that I would need to use to figure it out? I know it …
