A number is a mathematical object used to count and measure.

learn more… | top users | synonyms (1)

688
votes
28answers
576k views

Validate numbers in JavaScript - IsNumeric()

What's the cleanest, most effective way to validate decimal numbers in JavaScript? Bonus points for: Clarity. Solution should be clean and simple. Cross-platform. Test cases: 01. ...
20
votes
5answers
4k views

SQL, Auxiliary table of numbers

For certain types of sql queries, an auxiliary table of numbers can be very useful. It may be created as a table with as many rows as you need for a particular task or as a user defined function that ...
148
votes
7answers
69k views

Generating random numbers in Javascript in a specific range?

How can I generate a random whole number between two specified variables in Javascript, e.g. x = 4 and y = 8 would output any of 4, 5, 6, 7, 8?
58
votes
12answers
13k views

Unique random numbers in O(1)?

The problem is this: I'd like to generate unique random numbers between 0 and 1000 that never repeat (I.E. 6 doesn't come out twice), but that doesn't resort to something like an O(N) search of ...
75
votes
10answers
44k views

How to print a number with commas as thousands separators in JavaScript

I am trying to print an integer in JavaScript with commas as thousands separators. For example, I want to show the number 1234567 as "1,234,567". How would I go about doing this? Here is how I am ...
30
votes
10answers
102k views

Format numbers in javascript

Is there a simple way to format numbers in Javascript, similar to the formatting methods available in C# (or VB.NET) via ToString("format_provider") or String.Format()?
46
votes
24answers
16k views

How to convert floats to human-readable fractions?

Let's say we have 0.33, we need to output "1/3". If we have "0.4", we need to output "2/5". The idea is to make it human-readable to make the user understand "x parts out of y" as a better way of ...
19
votes
5answers
21k views

Matching numbers with regular expressions — only digits and commas

I can't figure out how to construct a regex for the example values: 123,456,789 -12,34 1234 -8 Could you help me?
14
votes
9answers
21k views

How to convert number to words in java

We currently have a crude mechanism to convert numbers to words (e.g. using a few static arrays) and based on the size of the number translating that into an english text. But we are running into ...
26
votes
8answers
13k views

nth fibonacci number in sublinear time

Is there any algorithm to compute the nth fibonacci number in sub linear time?
3
votes
4answers
2k 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...
12
votes
4answers
5k views

Converting words to numbers in PHP

I am trying to convert numerical values written as words into integers. For example, "iPhone has two hundred and thirty thousand seven hundred and eighty three apps" would become "iPhone as 230783 ...
7
votes
1answer
286 views

Are there are any side effects of using this method to convert a string to an integer

Are there any side effects if i convert a string to a number like below.. var numb=str*1; If I check with the below code it says this is a number.. var str="123"; str=str*1; if(!isNaN(str)) { ...
3
votes
6answers
3k views

Integer with leading zeroes

when i write System.out.println(0123); i get 83 however System.out.println((int)0123F); returns 123 why it works that way?
14
votes
6answers
35k views

Read all contact's phone numbers in android

I'm using this code to retrieve all contact names and phone numbers: String[] projection = new String[]{ People.NAME, People.NUMBER }; ...
11
votes
12answers
21k views

Generate 8 unique random numbers between 1 and 100

Hey guys, i have trouble generating unique random numbers using js. Can someone lend me a hand?
24
votes
6answers
41k views

Android Number Picker Dialog

Does anyone have any dialogs that will allow a user to pick a number within a certain range? It seems like this would be a fairly common need, but I can't find a common dialog for it and I'd rather ...
12
votes
7answers
9k views

Is there an easy way to convert a number to a word in PHP?

In PHP, is there an easy way to convert a number to a word? For instance, 27 to twenty-seven.
33
votes
6answers
32k views

Add comma to numbers every three digits using jQuery

jQuery plugin to add comma separating numbers into three digits without white spaces and if total digits are under three, then no comma added. Ex: 2984 => 2,984 297312984 => 297,312,984 ...
15
votes
6answers
29k views

Large Numbers in Java

How would i go about doing calculations with extremely large numbers in Java? i have tried long but that maxes out at 9223372036854775807, and when using an integer it does not save enough digits and ...
0
votes
2answers
1k views

Python math is wrong [duplicate]

Possible Duplicate: Python rounding error with float numbers Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type ...
8
votes
4answers
5k views

Restricting JTextField input to Integers

I know that this question must have been asked and answered a million times, but I just can't find an easy solution. I have a JTextField that is meant to accept only positive integers as input. I need ...
2
votes
5answers
11k views

How to concatenate a number to a variable name in MATLAB?

I have a variable a = 1. I want to generate a variable name of the form: variableNumber So in this example, I would want a1 a2 a3 as variables. How can I do that?
93
votes
7answers
23k views

Can I hide the HTML5 number input’s spin box?

Is there a consistent way across browsers to hide the new spin boxes that some browsers (such as Chrome) render for HTML input of type number? I am looking for a CSS or JavaScript method to prevent ...
15
votes
8answers
8k views

Generics - where T is a number?

I'm trying to figure a way to create a generic class for number types only, for doing some calculations. Is there a common interface for all number types (int, double, float...) that I'm missing??? ...
16
votes
8answers
5k views

Is C# Random Number Generator thread safe?

can anyone tell me if the C# Random.Next() method is thread safe?
7
votes
7answers
260 views

Why does PHP consider 0 to be equal to a string?

I have the following piece of code: $item['price'] = 0; /*code to get item information goes in here*/ if($item['price']=='e'){ $item['price'] = -1; } It is intended to initialize the item ...
39
votes
8answers
14k views

What is the best way to validate a credit card in PHP?

Given a credit card number and no additional information, what is the best way in PHP to determine whether or not it is a valid number? Right now I need something that will work with American ...
23
votes
12answers
5k views

Octal number literals: When? Why? Ever?

I have never used octal numbers in my code nor come across any code that used it (hexadecimal and bit twiddling notwithstanding). I started programming in C/C++ about 1994 so maybe I'm too young for ...
6
votes
1answer
2k views

How do you set the cout locale to insert commas as thousands separators?

Given the following code: cout << 1000; I would like the following output: 1,000 This can be done using std::locale, and the cout.imbue() function, but I fear I may be missing a step here. ...
33
votes
5answers
46k views

How to convert a byte array to its numeric value (Java)?

I have an 8 byte array and I want to convert it to its corresponding numeric value. e.g. byte[] by = new byte[8]; // the byte array is stored in 'by' // CONVERSION OPERATION // return the numeric ...
30
votes
4answers
14k views

Format file size as MB, GB etc

I need to display a file size as String using sensible units. e.g. 1L ==> "1 B"; 1024L ==> "1 KB"; 2537253L ==> "2.3 MB" etc. I found this previous answer, which I didn't find ...
17
votes
5answers
1k views

How to write a function for generic numbers?

I'm quite new to F# and find type inference really is a cool thing. But currently it seems that it also may lead to code duplication, which is not a cool thing. I want to sum the digits of a number ...
33
votes
6answers
36k views

How do I round a number in JavaScript?

While working on a project, I came across a JS-script created by a former employee that basically creates a report in the form of Name : Value Name2 : Value2 etc. The peoblem is that the values ...
11
votes
7answers
7k views

Is there a way to Convert Number words to Integers? Python

I need to convert 'one' into '1' 'two' into '2' and so on. Is there a way to do this a library or a class or anything?
13
votes
5answers
8k views

iOS: How to get a proper Month name from a number?

I know that the NSDateformatter suite of functionality is a boon for mankind, but at the same time it is very confusing to me. I hope you can help me out. Somewhere in my code, there is an int ...
23
votes
9answers
35k views

How do I tell if a variable has a numeric value in Perl?

Is there a simple way in Perl that will allow me to determine if a given variable is numeric? Something along the lines of: if (is_number($x)) { ... } would be ideal. A technique that won't throw ...
7
votes
3answers
3k views

Generating the partitions of a number

I needed an algorithm to generate all possible partitions of a positive number, and I came up with one (posted as an answer), but it's exponential time. The algorithm should return all the possible ...
7
votes
4answers
1k views

Java: Generic methods and numbers

I want to make a generic method which makes the total sum of a List of numbers. What I was trying is this: public static <T extends Number> T sumList(List<T> data) { T total = 0; ...
4
votes
6answers
759 views

Float numbers in Java

Could anyone please me why the output of the following programme is not " different different"? public static void main(String[] args) { float f1=3.2f; float f2=6.5f; if(f1==3.2) ...
16
votes
8answers
5k views

php display number with ordinal suffix

i want to display numbers as follows 1 as 1st, 2 as 2nd and so on to 150 as 150th. the problem is how to find 'st' , 'nd' ,'rd' and 'th' for numbers through code
17
votes
3answers
27k views

Python: Extract numbers of a string

I would extract all the numbers contained in a string. Which is the better suited for the purpose, regular expressions or the isdigit() method? Example: line = "hello 12 hi 89" Result: [12, 89]
4
votes
6answers
4k views

JavaScript numbers to Words

i'm trying to convert numbers to english words. Eg : 1234 become: one thousand two hundred thirty four. My Tactic goes like this: Separate the digits to three and put them on Array - finlOutPut - ...
3
votes
4answers
20k views

What is 0x10 in decimal?

I have the following code: SN.get_Chars(5) SN is a string so this should give the 5th Char Ok! Now i have another code but : SN.get_Chars(0x10) I wonder what 0x10 is? Is it a number? If it's so, ...
9
votes
10answers
47k views

Extract decimal part from a floating point number in C

How can we extract the decimal part of a floating point number and to store the decimal part and the integer part into seperate two integer variables?
10
votes
11answers
3k views

How to format a number from 1123456789 to 1,123,456,789 in C?

How can I in C language format a number from 1123456789 to 1,123,456,789? I tried using printf("%'10d\n", 1123456789); but that doesn't work. Could you advice anything? The simpler the solution the ...
8
votes
4answers
15k views

Javascript Thousand Separator / string format

Is there any function in Javascript for formatting number and strings ? I am looking for a way for thousand separator for string or numbers... (Like String.Format In c#)
5
votes
7answers
1k views

Regular expression where part of string must be number between 0-100

I need to validate serial numbers. For this we use regular expressions in C#, and a certain product, part of the serial number is the "seconds since midnight". There are 86400 seconds in a day, but ...
0
votes
2answers
2k views

Formatting scientific number representation in xsl

I have the following value in my XML -1.8959581529998104E-4. I want to format this to the exact number it should be using XSL to give me -0.000189595815299981. ...
31
votes
12answers
4k views

How to read values from numbers written as words?

As we all know numbers can be written either in numerics, or called by their names. While there are a lot of examples to be found that convert 123 into one hundred twenty three, I could not find good ...

1 2 3 4 5 9