0
votes
5answers
60 views
List and Integer query
If i had a list of numbers and some maybe negative, how would i ensure all numbers in my list were positive? I can covert the items in the list to integers thats no problem.
Another question, I want …
-7
votes
0answers
73 views
Python: List and Integers [closed]
Possible Duplicate:
Python: List to ints to a single number?
Say i have a integer list:
['15', '45', '-77', '89']
I want to:
make sure these values are all positive intgers
Extract …
-1
votes
5answers
125 views
Python: List to integers
I have read a file in and converted each line into a list. A sample of the list looks like:
['15', '2', '0'], ['63', '3', '445', '456' '0'], ['23', '4', '0']
i want to retrieve the first number from …
2
votes
5answers
141 views
Extract Integer Part in String
What is the best way to extract the integer part of a string like
Hello123
How do you get the 123 part. You can sort of hack it using Java's Scanner, is there a better way?
0
votes
3answers
114 views
Make sure int variable is 2 digits long, else add 0 in front to make it 2 digits long
How do I check a int variable ($inputNo) to see if it’s 2 or more decimal digits long?
Example:
inputNo="5"
Should be changed to: 05
inputNo="102"
Should be left alone: 102
I thought about …
0
votes
2answers
44 views
How to convert string to hexadecimal integer in Python?
hi I get user argv from command line as follows: '0x000aff00'
and I want python to treat it as hex directly...
str = sys.argv[1]
how is it possible? thanks!
2
votes
6answers
91 views
Strip final 0 off a python string
#!/usr/bin/env python
import os, sys, subprocess, time
while True:
print subprocess.call("xsel", shell=True);
time.sleep(1);
Takes an entry from the clipboard and prints it, every 1 …
0
votes
2answers
15 views
checking to ensure all values in a field are integers in MySQL
I have a column that is currently a floating-point number and I need to check if all the values in the column are integers. What's the easiest way to do this?
0
votes
3answers
54 views
PHP Convert to int
Hi,
Im not sure what this type of number is '1.3122278540256E+18' but how can i expand it into an integer?
Thanks!!
0
votes
10answers
181 views
convert integer to array, c++
I would like to convert an integer into an array, so that it looks like the following:
int number = 123456 ;
int array[7] ;
with the result:
array[0] = 1
array[1] = 2
...
array[6] = 6
2
votes
5answers
122 views
How does Casting work in PHP?
What doesn't this work:
(int)08 == (int)09==0
But this and this does?
(int)07==7
(int)06==6
1
vote
6answers
145 views
int? c#, used in ref, what exactly is it.
Hi, might be a kiddy, biddy question but
I was trying to pass an "output" parameter to a Stored Procedure using C Sharp and was getting an error until I passed the "output" variable using following …
0
votes
0answers
10 views
Why does AMFPHP store integers as two bytes for the AMF protocol?
I'm wondering if anyone familiar with AMFPHP or low level data storage could explain why integers are being stored as two bytes instead of four. As far as I can tell, the AMF3 protocol demands a four …
0
votes
4answers
68 views
DECIMAL vs INT what is the best optimized choice?
I'm sure this ask in incomplete without a precise context, so I'll try to explain it, and I'll try to be clear
I need to store a whole of data rapresented on the page with grams, milligrams, …
1
vote
2answers
56 views
long long int in ObjC
Hi All,
I am using this NSURLConnection Delegate method
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
long long rdata = [response …
