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

learn more… | top users | synonyms (1)

5
votes
5answers
107 views

Convert Unicode string made up of culture-specific digits to integer value

I am developing a program in the Marathi language. In it, I want to add/validate numbers entered in Marathi Unicode by getting their actual integer value. For example, in Marathi: ४५ = 45 ९९ = 99 ...
0
votes
1answer
27 views

What Isabelle library to reuse for expressing that some function is a linear order (on some set)

In my Isabelle formalisation I'm dealing with finite sets of natural numbers, and on these sets I'd like to consider functions that have the property of being a linear order. I see that there are ...
6
votes
4answers
4k views

Perl, how to determine if a variable value is a number?

Is there a unique method to determine if a variable value is a number, Since the values could be in scientific notation as well (for example, 5.814e-10)?
0
votes
2answers
77 views

Numbers formatting in C#

I have numbers like this: -1.0001 -10000.01 And I need to get this: -1.0001 -10000,01 Requirements: - Decimal separator is "," - Group separator is " " - part of a number after the comma can have ...
0
votes
2answers
35 views

Adding bracket when key in a number

Let's say I have a textboxA. When the application runs, textboxA will be shown and user can enter a number. I wanted to format the user input to red color font and enclose with brackets. Example: If ...
0
votes
1answer
19 views

Specific number validation?

Is it possible to validate a field to a specific set of numbers using javascript? Say for example in a postcode field you can only enter four numbers to be be accepted e.g. 2747,2750, 2753, 2760, ...
0
votes
1answer
28 views

Function format number and how to use it in sql statement

For oracle, If I have a table A with data in number (such as price), how to write a function to format a number(10,2) to 9,9999.99 (<< obvious format). And then how to use this function in ...
0
votes
3answers
33 views

Python: Variance of a list of defined numbers

I am trying to make a function that prints the variance of a list of defined numbers: grades = [100, 100, 90, 40, 80, 100, 85, 70, 90, 65, 90, 85, 50.5] So far, I have tried proceeding on making ...
-4
votes
1answer
25 views

Insert Number values

When inserting values into a database, and the datatype is a Number, does the Number need to be in quotation marks: Here is the Object code: create type ComputerFile_objtyp as Object ( ...
-2
votes
4answers
27 views

Prompting User Multiple Times for Numbers

I am fairly new to java. Here is what I am trying to do: Write a program that will calculate the perimeter and area of a rectangle. Prompt the user to input the length and width. Calculate the area ...
14
votes
13answers
8k views

Fastest way to clamp a real (fixed/floating point) value?

Is there a more efficient way to clamp real numbers than using if statements or ternary operators? I want to do this both for doubles and for a 32-bit fixpoint implementation (16.16). I'm not asking ...
9
votes
1answer
74 views

Why does float.parse return wrong value?

I have a problem. when I parse a string like "0.005" to float or double, it works fine on my computer, but when i install my program to my client's computer, it returns 5. (both my computer and my ...
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. ...
0
votes
1answer
11 views

Extract numbers from a string?! Java

For my program I am trying to figure how I can go about taking a series of number as string entered by the user; extract each number at spaces and parse them into integers. P.S I am still a newbie to ...
1
vote
6answers
141 views

How make this even count code faster?

The following code is meant to fins total numbers between l and r whose product of digits is even (for multiple test cases t).This code runs perfectly but is extremely slow for r greater than ...
0
votes
1answer
19 views

Android: recognize with gestures two digit numbers

I have create an application using gestures library and works well when I try to detect numbers from 0 to 9, but now I want to detect from 0 to 99. The application is easy, only just ask for an ...
0
votes
2answers
51 views

Same random numbers being created everytime the loop goes around.

I am a beginner at C++ and for one of my project involves loop inside loops and creating random numbers. Here is what I have so far: ` using namespace std; int main() { srand((unsigned ...
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 ...
0
votes
2answers
45 views

Adding space between numbers?

I'm trying to make a number input. I've made so my textbox only accepts numbers via this code: function isNumber(evt) { evt = (evt) ? evt : window.event; var charCode = (evt.which) ? ...
0
votes
1answer
16 views

Excel VBA Change last two digits of a number

I´m trying to make a number to change its last two digits to zero. In Excel, in a certain Cell I will always get for sure a number always higher than 100. Let´s assume that I get the number 26312. ...
1
vote
0answers
15 views

Line number of xinclude while unmarshalling using jaxb

I found this question on SO. I shows how to get the line numbers of individual xml elements while unmarshalling with JAXB. I extended this example being able to use xinclude. Unfortunately, I'm not ...
3
votes
3answers
13k views

Javascript - validation, numbers only

I'm trying to get my login form to only validate if only numbers were inputted. I can it to work if the input is only digits, but when i type any characters after a number, it will still validate etc. ...
3
votes
1answer
45 views

How do i create random numbers that are nonrepeating using applescript

Trying to figure out how to create nonrepeating numbers using applescript. If I want random numbers only 1 or 2, i would want my result to be [1,2] or [2,1] and never [1,1] or [2,1]. So I just ...
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 ...
0
votes
3answers
49 views

read signed int from a bin file in C gives me wrong results

I want to read data from a .bin file. Actually If I preview the data of my bin file I see something like this: 0000000 3030 3030 3030 3730 300a 3030 3030 3030 0000010 0a35 ...
0
votes
1answer
87 views

Get the IMSI number or destination phone number from incomming message (SMS)

I am developing an application that requires the IMSI/phone number of the device(with multiple SIM cards) which receives an sms. This is basically for identification purpose of which SIM is receiving ...
0
votes
5answers
80 views

Java Random number but not zero

int num = 10; Random rand = new Random(); int ran = rand.nextInt(num); if (ran==0){ ran= ran+1; } else{ System.out.println("random : "+ran); } This is what i have coded so ...
-2
votes
7answers
95 views

C# How to check how many numbers an Integer contains and the separate them [closed]

I want to know how I can see how many numbers an integer contains Example: I have an int : 1234 Now I want these numbers back but then separated into 4 Integers 1000 200 30 4 How do I do ...
1
vote
1answer
49 views

How to add an if statement into this php function

I need to insert an if statement in the code below: add_filter('add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment'); function woocommerce_header_add_to_cart_fragment( $fragments ) { ...
-1
votes
3answers
58 views

How to round off 9999999999999999 to 9999999999999998

In my case, i am converting a string value of '9999999999999999' to integer using parseFloat(). But it converts to next number of it i.e. 10000000000000000. But i need to convert it to before of that ...
1
vote
4answers
26 views

Non Decimal Numbers on Math.ceil or Math.round in JavaScript?

I want to use Javascript to round up a number. For example like this, 15 => 20 345 => 400 201 => 300 180 => 200 93 => 100 22 => 30 How to achieve this using Javascript? I know i ...
10
votes
3answers
164 views

All natural numbers which sum up to N and where the inverses sum up to one

I have a problem to solve. N natural number is given. I need to find a list of natural numbers which sum up to that given number and at the same time the inverses up to 1. a + b + c + ... = N 1/a + ...
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?
1
vote
3answers
199 views

converting-words-to-numbers-in-php II

There is a great function here Converting words to numbers in PHP from El Yobo. But I have the problem that the string must begin with a written number. How can convert e.g. "iPhone has two hundred ...
1
vote
2answers
32 views

my EditText will accept numbers only in English, is there a way to change that and make it accept universal numbers?

I made a very simple app that involves only numbers and there is no need to make different locale folders or anything. When I test the app, the EditText will take numbers when the keyboard language is ...
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 ...
5
votes
8answers
2k views

How do programming languages handle huge number arithmetic

For a computer working with a 64 bit processor, the largest number that it can handle would be 264 = 18,446,744,073,709,551,616. How does programming languages, say Java or be it C, C++ handle ...
1
vote
2answers
18 views

Simple regex - finding words including numbers but only on occasion

I'm really bad at regex, I have: /(@[A-Za-z-]+)/ which finds words after the @ symbol in a textbox, however I need it to ignore email addresses, like: foo@things.com however it finds ...
11
votes
7answers
2k views

What's the best way to convert a number to a string?

What's the "best" way to convert a number to a string? (you can quote speed advantage, clarity advantage, memory advantage, etc.) Sorry, if this question sounds academic, but I want to choose a style ...
0
votes
2answers
619 views

How to get a pin number password keyboard in android?

I need a number keyboard on a PIN EditText. I tried using android:inputType="number|textPassword" This brings up the number keypad, but the characters are not password chars. How to get a number ...
0
votes
1answer
20 views

Multiply numbers after each other

Exercise Product1ToN (Loop): Write a program called Product1ToN to compute the product of integers 1 to 10 (i.e., 1×2×3×...×10). Try computing the product from 1 to 11, 1 to 12, 1 to 13 and 1 to 14. ...
0
votes
2answers
20 views

validate numbers by limitation in lenght and true decimal format

I want validate numbers by regular expression my valid numbers is : 123456789012345.123 or 123.9 or 0.686 before decimal point must be 1 to maximum 15 numbers and after it must be maximum to 3 ...
-2
votes
0answers
12 views

Adding numbers to a variable [closed]

Im not sure how to explain this but this is what I am looking for. If I create a while loop like this: while(count <= Max){ ++count; ++number; and I want to have a variable ...
0
votes
3answers
45 views

Change array values to number from string

I have an array with these values: var items = [Thursday,100,100,100,100,100,100] I'm grabbing these from the URL query string so they are all string values. I want all columns except the first to ...
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 ...
0
votes
3answers
24 views

jqGrid sorting some columns while others don't

I'm new to jqGrid and experiencing something strange. The data from the xml is successfully loading in the table. When I sort on a name in a column the rows are sorted correctly. Now in some columns I ...
1
vote
2answers
207 views

Generate unique number based on string input in Javascript

In the past I have made a function that generates an unique id (number) from a string. Today I discover that it is not as unique as should be. Never saw a problem before with it. Today two different ...
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 ...
2
votes
3answers
52 views

How to check for numbers in a textbox, of which you only want letters A - Z

I am using JavaScript on my website to check input elements within a form. I am trying to ensure that there are no numbers in the field when the user enters their name. The form is created using PHP. ...
0
votes
5answers
79 views

Why does this number gets detected as bool?

I'm checking if value ir between 0 and -0.2 like so: float value = -0.1; if (0 < value > -0.2f) { } But I get error operator '>' cannot be applied to operands of type 'bool' and 'float'. I ...

1 2 3 4 5 62