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

learn more… | top users | synonyms (1)

691
votes
28answers
578k 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. ...
149
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?
94
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 ...
77
votes
10answers
45k 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 ...
72
votes
16answers
5k views

Algorithms based on number base systems? [closed]

I've noticed recently that there are a great many algorithms out there based in part or in whole on clever uses of numbers in creative bases. For example: Binomial heaps are based on binary ...
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 ...
47
votes
23answers
3k views

Interview Question, What do they want to accomplish?

I was on a technical job interview today, and it was time to give me some programming exercises. I finally came to the last question: Given the numbers: 116 104 105 115 32 105 115 32 99 111 114 114 ...
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 ...
45
votes
15answers
2k views

Check if a spelled number is in a range in C++

I want to check the (numeric) input against a list of ranges (min,max) while the input is partially typed in; in other words, I need an elegant algorithm to check the prefix of a number against a ...
44
votes
7answers
41k views

How do I show the number keyboard on an EditText in android

I just basically want to switch to the number pad mode as soon a certain EditText has the focus.
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 ...
36
votes
7answers
970 views

An improved isNumeric() function?

During some projects I have needed to validate some data and be as certain as possible that it is javascript numerical value that can be used in mathematical operations. jQuery, and some other ...
34
votes
6answers
21k views

Replace non-numeric with empty string

Quick add on requirement in our project. A field in our DB to hold a phone number is set to only allow 10 characters. So, if I get passed "(913)-444-5555" or anything else, is there a quick way to ...
33
votes
6answers
37k 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 ...
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 ...
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 ...
33
votes
8answers
48k views

JavaScript string and number conversion

How can I do the following in JavaScript? Step (1) Concatenate "1", "2", "3" into "123" Step (2) Convert "123" into 123 Step (3) Add 123 + 100 = 223 Step (4) Covert 223 into "223"
32
votes
7answers
11k views

Out of curiosity: How are serial numbers generated? Hints, Algorithms? [closed]

I wondering about how serial number generators and validator work. My aim would be to generate a serial number with five parts consisting of numbers and letters only. I enjoy coding as a hobby and ...
31
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 ...
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 ...
30
votes
6answers
1k views

Double multiplied by 100 and then cast to long is giving wrong value

I have the following code: Double i=17.31; long j=(long) (i*100); System.out.println(j); O/P : 1730 //Expected:1731 Double i=17.33; long j=(long) (i*100); System.out.println(j); O/P : 1732 ...
30
votes
10answers
103k 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()?
29
votes
15answers
10k views

Generating non-repeating random numbers in Python

Ok this is one of those trickier than it sounds questions so I'm turning to stack overflow because I can't think of a good answer. Here is what I want: I need Python to generate a simple a list of ...
28
votes
7answers
1k views

Cross browser Javascript number precision

Within JavaScript, numbers are defined as 64bit double-precision. I have a specific use in mind for a distributed web application, which would only work if I can rely on consistent results across all ...
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?
26
votes
9answers
2k views

Tricky programming problem that I'm having trouble getting my head around

First off, let me say that this is not homework (I am an A-Level student, this is nothing close to what we problem solve (this is way harder)), but more of a problem I'm trying to suss out to improve ...
25
votes
5answers
2k views

From a given number, determine three close numbers whose product is the original number

I have a number n, and I want to find three numbers whose product is n but are as close to each other as possible. That is, if n = 12 then I'd like to get 3, 2, 2 as a result, as opposed to 6, 1, 2. ...
25
votes
3answers
737 views

OEIS A002845: Number of distinct values taken by 2^2^…^2 (with n 2's and parentheses inserted in all possible ways)

I am looking for a reasonably fast algorithm to calculate terms of the OEIS sequence A002845. Let me restate its definition here. Let ^ denote the exponentiation operator. Consider expressions of the ...
24
votes
6answers
42k 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 ...
24
votes
4answers
9k views

Minimum values and Double.MIN_VALUE in Java?

Can anyone shed some light on why Double.MIN_VALUE is not actually the minimum value that Doubles can take? I understand why it's a useful number, but it seems a very unintuitive name, especially ...
24
votes
4answers
6k views

Number.sign() in javascript

Wonder if there are any nontrivial ways of finding number's sign (signum function)? May be shorter / faster / more elegant solutions than the obvious one var sign = number > 0 ? 1 : number < 0 ...
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 ...
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 ...
23
votes
5answers
11k views

How to limit the maximum value of a numeric field in a Django model?

Django has various numeric fields available for use in models, e.g. DecimalField and PositiveIntegerField. Although the former can be restricted to the number of decimal places stored and the overall ...
22
votes
11answers
2k views

Biggest number in computer ever

Just asked by my 5 year old kid: what is the biggest number in the computer? We are not talking about max number for a specific data types, but the biggest number that a computer can represent. ...
22
votes
4answers
4k views

When I divide numbers in clojure I get a fraction , how do I get the decimal?

When I do (/ 411 125) , I don't get it in terms of decimal. How do I do that?
21
votes
4answers
24k views

Format Float to n decimal places

I need to format a float to "n"decimal places. was trying to BigDecimal, but the return value is not correct... public static float Redondear(float pNumero, int pCantidadDecimales) { // the ...
21
votes
6answers
4k views

Math - mapping numbers

How do I map numbers, linearly, between a and b to go between c and d. That is, I want numbers between 2 and 6 to map to numbers between 10 and 20... but I need the generalized case. My brain is ...
21
votes
3answers
6k views

Formatting money in twig templates

Are there any filters or sth like that in twig template engine to format money or numbers?
20
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?
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 ...
19
votes
5answers
20k views

Get decimal portion of a number with JavaScript

I have float numbers like 3.2 and 1.6. I need to separate the number into the integer and decimal part. For example, a value of 3.2 would be split into two numbers, i.e. 3 and 0.2 Getting the ...
19
votes
5answers
16k views

Java's L number (long) specification

It appears that when you type in a number in Java, the compiler automatically reads it as an integer, which is why when you type in (long) 6000000000 (not in integer's range) it will complain that ...
19
votes
3answers
460 views

Write the biggest prime

I'm trying to solve the biggest prime programming praxis problem in C#. The problem is simple, print out or write to file the number: 257,885,161 − 1 (which has 17,425,170 digits) I have managed to ...
18
votes
5answers
17k views

Check if string contains only digits

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 wanna ...
18
votes
17answers
34k views

String to Int in java - Likely bad data, need to avoid exceptions

Seeing as Java doesn't have nullable types, nor does it have a TryParse(), how do you handle input validation without throwing an exceptions? The usual way: String userdata = /*value from gui*/ int ...
18
votes
15answers
2k views

Determine if a String is a number and convert in Java?

I know variants of this question have been asked frequently before (see here and here for instance), but this is not an exact duplicate of those. I would like to check if a String is a number, and if ...
18
votes
3answers
2k views

Is there a Java library for unsigned number type wrappers?

Obviously, Java doesn't support unsigned number types natively, and that's not going to change soon (comments starting in 2002). However, when working with databases, such as MySQL, they may come in ...
18
votes
4answers
320 views

Make big and small numbers human-readable [duplicate]

I would like to print my very small numbers in C# in a human friendly way, such as: 30µ for 3E-5 or 456.789n for 0.000000456789. I know of the Humanize_number() function from BSD in C, but only ...
17
votes
20answers
2k views

Why do most languages not allow binary numbers?

Why do most computer programming languages not allow binary numbers to be used like decimal or hexadecimal? In VB.NET you could write a hexadecimal number like &H4 In C you could write a ...

1 2 3 4 5 63