0
votes
5answers
109 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 + …
1
vote
8answers
78 views
C#: Anything similar to the php ctype_digit function for C#?
I have a string and I want to check that it only consists of digits. I don't really want to (or need to) parse it or anything, I just want to know that it does not contain anything …
8
votes
14answers
901 views
Efficient way to determine number of digits in an integer
What is a very efficient way of determining how many digits there are in an integer in C++?
3
votes
14answers
264 views
What programming language will enable me to enter a very long number without converting it to floating point?
What would be the best way to do the following.
Enter a very long number, lets say 500,000 digits long without it going into scientific notation; and then am able to do math with …
1
vote
2answers
161 views
Ruby: counting digits in a float number
Is there any worthy Ruby method to count the number of digits in a float? Also, how do I specify the precise when to_s float numbers?
2
votes
4answers
472 views
C/C++ Identify the digits in a given number.
Hello everyone, i'm new to programming.. and i'm stuck at a problem.. I want my program to identify the separate digits in a given number, like if i input 4692, it should identify …
5
votes
9answers
10k views
How to round a number to n decimal places in Java
What I'd like is a method to convert a double to a string which rounds using the half-up method. I.e. if the decimal to be rounded is a 5, it always rounds up the previous number. …
0
votes
5answers
278 views
Extract first two digits of hex (UInt32 *) and convert to int
I have a bunch of hex values stored as UInt32*
2009-08-25 17:09:25.597 Particle[1211:20b] 68000000
2009-08-25 17:09:25.598 Particle[1211:20b] A9000000
2009-08-25 17:09:25.598 Pa …
0
votes
7answers
490 views
Delete digits in Python (Regex)
I'm trying to delete all digits from a string.
However the next code deletes as well digits contained in any word, and obviously I don't want that.
I've been trying many regular ex …
2
votes
3answers
603 views
Extracting individual digits from a float
I have been banging my head on this one all day. The C++ project I am currently working on has a requirement to display an editable value. The currently selected digit displays t …
