The digits tag has no wiki summary.
2
votes
3answers
34 views
Simple grep for anything year
I know I'm doing something boneheaded here, but a regex cheat sheet given to us in my Unix/Linux class implied (by my reading) that this should find lines in a text file that contain years (numbers ...
2
votes
2answers
96 views
Is there an R function for deriving digits?
I have seen the solution in the past but forgot where: is there an R function that turns x=1234 into its digits (1,2,3,4) and vice-versa?
1
vote
2answers
47 views
program displaying to few digits
This program computes the square root of 2, but it will not display the digits to my desired accuracy of 1000 digits, but instead it only displays 50 digits.
here is the program
import math
...
1
vote
1answer
27 views
How to round by a total digits(including integer part) instead of a fixed digit in python?
I wonder if there is any easy way to round a double number to a total digits in python?
For example, I want 3 digits in total, so
I want to 1.523 to be 1.52 , and 23.45 to be 23.5, and 108,9 to be ...
4
votes
1answer
120 views
how to find number of digits in assembly 8086?
I am a new assembly programer and I could not succeed in finding how many digits a number has.My purpose is to find factorials.
I program in an emulator of assembly 8086.
0
votes
1answer
62 views
Limit number of digits before & after decimal points in UITextField
I want to limit the digits entered in UITextField. Here is my code
#define MAX_NO_OF_DIGITS_BEFORE_DECIMAL 8
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range ...
-7
votes
1answer
49 views
Sorting an array according to the sum of digits in C? [closed]
aka Sorting an array according to contents of other array.
Let's say I have two arrays.
1 = { 55, 31, 10001}
After summing digits:
2 = { 10, 4, 2 }
And I want array 1 to be:
1 = { 10001, 31, 55 }
...
1
vote
1answer
148 views
Compute all possible numbers from given digits
The problem is simple. From given set of digits (there are max 10 digits), compute all numbers that can be madeform this digits (a digit can be used as many times it's is included in the set).
Fist I ...
1
vote
1answer
59 views
In Python how can I check how many times a digit appears in an input? [closed]
For example let say
numbers=input("Enter numbers: ")
If someone inputs 11234458881
How can I make the output
1 occurs 3 times
2 occurs 1 time
3 occurs 1 time
4 occurs 2 times
And so on
-1
votes
2answers
37 views
n complement of a number in hardware [closed]
Do you know an algorithm or a way to find out the complement of a number in base N.?
For example number 001112 which is in base 3 .
Thank you
-5
votes
1answer
73 views
n - 1 digits of a number [closed]
I have an 'n' digit number. I need to print the first n - 1 digits of the same. As far as I know, it is basically division by 10. But this is to be done without using any of the arithmetic operators. ...
0
votes
1answer
48 views
Regular Expression that might contain 8 or 9 numbers - how to do?
I use this regular expression to validate brazilian cellphones:
/^(\([0-9]{2}\))\s([9]{1})?([0-9]{4})-([0-9]{4})$/
Output: (31) 8876-3234 VALID
But Sao Paulo state has 9 digits cellphones:
Output ...
0
votes
2answers
252 views
How to add the digits of number in assembly x86
I'm working on a program in assembly language that will compute the sum of the digits of an integer that will be inputted by the client. The number will always be 10 digits long. I am very new to ...
-1
votes
1answer
193 views
Sum the digits of a number - python [closed]
If I want to find the sum of the digits of a number, i.e. :
input: 932
output: 14
What is the best way of doing this?
I instinctively did: sum(int(digit) for digit in str(number))
and I found ...
0
votes
4answers
90 views
get int numbers zero to nine one by one java
Hello i would like to know the best and easiest way to scan an int number from a txt file
one digit after another
the numbers i can find is 0 to 9
non else
for example:
24351235312531135
i want to ...
4
votes
1answer
390 views
Get number of digits with JavaScript
As the title of my post suggests, I would like to know how many digits var number has. For example: If number = 15; my function should return 2. Currently, it looks like this:
function ...
3
votes
2answers
128 views
Simple Number to Array with Individual Digits
I am exceptionally new to programming, but I am working on improving my skills as a programmer. Currently, I am working on a problem I gave myself where I am trying to take a variable number and make ...
0
votes
1answer
237 views
Only allow digits in textbox C# [duplicate]
Possible Duplicate:
How can I allow only 0 or 1 to be entered in a TextBox?
Allow only integers in TextBoxes
I'm working on a program now and I have a few simple textboxes. I keep getting ...
0
votes
1answer
304 views
All possible combinations(with repetition) as values in array using recursion
I'm trying to solve a problem in which I need to insert math operations(+/- in this case) between digits or merge them to get a requested number.
For ex.: 123456789 => 123+4-5+6-7+8-9 = 120
My ...
2
votes
1answer
138 views
how many digits in FLOAT?
I've looked all over and can't find this answer.
How many actual digits are there for a MySQL FLOAT?
I know (think?) that it truncates what's in excess of the FLOAT's 4 byte limit, but what exactly ...
1
vote
2answers
283 views
How to find out in ruby if a character is a letter or a digit
I just starting tinkering with Ruby earlier this week and I've run into something that I don't quite know how to code. I'm converting a scanner that was written in Java into Ruby for a class ...
0
votes
1answer
51 views
Regex: finding all 5 digit numbers
Just moved to a new job, and my job is to retrofit schema to about 42,000 html web pages. I need to find all zip codes, which all happen to be in the same format. Each instance is only found once on ...
2
votes
2answers
99 views
Php Preg_Replace not matching quantity of characters
I'm trying to filter a string by preg_replacing. Anything but numbers and dot and no more than 5 numbers before the dot. PHP 5.4.3 under wamp(UptoDate).
Good Matche:
0.01
0.1
12345.11
12345.1
1
...
0
votes
5answers
90 views
A number out of digits [closed]
I want to know what is the biggest number you can make from multiplying digits entered by the user like this:
5*6*7*2 OR 567*2 OR 67*25 ...etc
so 5/6/7/2 should be entered by the user as variables, ...
-1
votes
1answer
84 views
Integer somehow gets converted to last digit only? No idea
I must be missing something incredibly simple, but I cannot seem to figure this out. The integer 'number' is somehow converted to its first (most significant) digit after the getDigits() function is ...
1
vote
0answers
89 views
Tesseract confuses 7 for 1, returns nothing for text.
I am attempting to OCR scanned forms, with fields of numbers and some text. However, running tesseract on the cropped text does not yield the correct results.
For example, for the number 7:
The ...
9
votes
2answers
388 views
Stopping a large number of zeros being printed (not scientific notation)
What I'm trying to achieve is to have all printed numbers display at maximum 7 digits. Here are examples of what I want printed:
0.000000 (versus the actual number which is ...
-1
votes
3answers
92 views
Transform rational numbers to integers
How can I transform rational numbers like 1.24234 or 45.314 into integers like 124234 or 45314 also getting the number of decimal digits?
1
vote
0answers
40 views
Trim decimal digits [duplicate]
Possible Duplicate:
Truncate a decimal value in c++
How can I truncate some of the decimal digits of a rational number so that it has only 6 digits? (For example 1.2345678909876 to 1.23456)
...
3
votes
4answers
90 views
Return/print amount of digits in a sentence OR an error message
I'm new to the site and to python so I hope I'm giving all the required information. I've already searched for this question but none of the solutions seem to work for me.
I'm trying to create a ...
0
votes
5answers
701 views
FoxPro functions which determine if a variable is a character string or a numeric string
I'm looking for a Visual FoxPro function which is similar to the PHP function is_numeric().
I have found this, but I could not use VARTYPE or TYPE because the variable is always a character string ...
0
votes
1answer
64 views
Easiest way to count digits in number
Recently, while doing a printer layout programmatically in Java, I stumbled across the problem of aligning certain numbers and to have them right-aligned I needed to have a count of the amount of ...
1
vote
1answer
52 views
Avoiding rounding in R
I am conducting a Bayesian analysis in R thorough "R2Winbugs" package. In the R output, teh estimated parameters are rounded. My question is how can I control this?
Here is my command:
bugs(data, ...
3
votes
1answer
78 views
Javascript Regex for Javascript Regex and Digits
The title might seem a bit recursive, and indeed it is.
I am working on a Javascript which can highlight/color Javascript code displayed in HTML. Thus, in the Internet Browser, comments will be ...
1
vote
3answers
82 views
Symbolize any non-digit in String (Ruby)
I have the following string output:
"[1, 2, 3, *, +, 4, 5, -, /]"
How can I symbolize the non-digits characters (i.e. *, +, -, /) and return the following result:
[1, 2, 3, :*, :+, 4, 5, :-, :/]
...
3
votes
0answers
288 views
Android Tesseract OCR 7 Segment Digits
I have been implementing an Android OCR tool using tesseract to ocr digits only. So far, it is giving quite high accuracy with normal digit fonts. However, the accuracy is terrible when it comes to 7 ...
0
votes
2answers
203 views
Regex for digits from 0 to 16 digits Only in ASP.net
I have a text field that is the user choose to enter data in it, it must be digits and must be less than or equal to 16 digits (Not more than that).
I have regular expression for digits,
...
0
votes
1answer
92 views
Why does `options(digits=3)` get ignored in `knitr'?
When I run the following line by line in R it works fine, but with knitr the options(digits=3) gets ignored.
Why? Any solutions?
<<cor>>=
#mock up data set.
x <- c(rnorm(100))
y <- ...
1
vote
1answer
91 views
Checking indices with Radix Sort
I've read an implementation of radix sort that works with int data types that are less than ten i.e. they consist of one sig-fig in the one's place. (e.g. 1, 0, 3, 4, 9,... just to be clear). This ...
-2
votes
2answers
103 views
Finding number of digits in integer when being passed an int = 0
Using Java btw. But Usually people seem to do this sort of thing with.
int numDigits = (int)(log10(num)+1); //can explicitly floor, or casting to int will do that
but log10(0) = -INF, which means ...
3
votes
3answers
1k views
No of numbers less than a given number with no repeating digits
How can we find the number of numbers less than a given number with no repeating digits in it?
For example the number of such numbers less than 100 is 90. (11, 22, 33,44, 55,66,77,88,99 have ...
-1
votes
0answers
95 views
How to count numbers with different digits smaller than a particular number? [duplicate]
Possible Duplicate:
No of numbers less than a given number with no repeating digits
The numbers smaller than 10 with different digits are: 9,8,7,....1. So there are 9 numbers.
Similarly, ...
1
vote
2answers
409 views
Add space between numbers/digits and letters/characters
I have a code like this
(function($, window, document, undefined) {
$.fn.quicksearch = function (target, opt) {
var timeout, cache, rowcache, jq_results, val = '', e = this, options = ...
0
votes
1answer
57 views
JS regexp to find only 1 or 2 long digits
Here's my code:
var dayRegX = new RegExp("\\b" + "\\d{1, 2}" + "\\b", "g");
if(!dayRegX.test(day.value)){
alert('not good');
}
The test method returns false all the time, so I get the ...
2
votes
4answers
81 views
How to get all the digits at the beginning of a string?
How can I get all the digits at the beginning of a string?
Here is an example string: 1&days=800&trans=9aq8ojjfka24qnl10ohktibfs1
In the example above, I would need to extract 1.
0
votes
2answers
135 views
Returning an integer whose digits sum exactly to n
My question is related to digits sum.
In a digit sum system, a digits sum of number 39 = 3 + 9 = 12.
However in my case, I would like to write a method where the user input 12, and the
method will ...
5
votes
3answers
169 views
Regex to catch groups of same digits in Ruby
Is it possible to catch all grous of same digits in string with regex on Ruby? I'm not familiar with regex.
I mean: regex on "1112234444" will produce ["111", "22", "3", "4444"]
I know, I can use ...
-1
votes
1answer
231 views
Using Math.round in javascript adds weird number of 0s at the end [duplicate]
Possible Duplicate:
Is JavaScript’s Math broken?
I'm using Math.round to round the number and for some reason it adds weird number of 0s at the end which should not be there. Here is my ...
1
vote
1answer
95 views
Tricky math! K arrays of N size(total KxN), need all possible permutations of size N
So for example I have: two arrays of size 3 containing
[1,2,3] and [7,8,9]
and now I need to figure out all possible permutations if I were to place them into one array of size N. They don't all ...
-1
votes
3answers
89 views
Convert every part of IP number to three digit in C
My question is how to convert every part of IP number to three digits? For example 127.0.0.1 becomes 127.000.000.001
It is easy to do in languages like Python but I am new in C and do not know how to ...




