Top "Integer" questions

Common datatype in many programming languages for representing a whole number.

Convert factor to integer

I am manipulating a data frame using the reshape package. When using the melt function, it factorizes my value column, …

r integer coercion
Converting Integer to String with comma for thousands

I want to convert an Integer 35634646 to have the thousand "," so it should be 35,634,646. What would be the quickest way …

java string integer
"Integer number too large" error message for 600851475143

public class Three { public static void main(String[] args) { Three obj = new Three(); obj.function(600851475143); } private Long function(long i) { …

java integer
What's the difference between integer class and numeric class in R

I want to preface this by saying I'm an absolute programming beginner, so please excuse how basic this question is. …

r class object integer numeric
How to convert datetime to integer in python

how can i convert YYYY-MM-DD hh:mm:ss format to integer in python? for example 2014-02-12 20:51:14 -> to …

python datetime integer converter
Reading integers from binary file in Python

I'm trying to read a BMP file in Python. I know the first two bytes indicate the BMP firm. The …

python file binary integer
How to pass integer from one Activity to another?

I would like to pass a new value for an integer from one Activity to another. i.e.: Activity B …

android integer bundle
How to parse a month name (string) to an integer for comparison in C#?

I need to be able to compare some month names I have in an array. It would be nice if …

c# parsing integer compare
Convert integers to strings to create output filenames at run time

I have a program in Fortran that saves the results to a file. At the moment I open the file …

string integer fortran
In C#, how to check whether a string contains an integer?

I just want to know, whether a String variable contains a parsable positive integer value. I do NOT want to …

c# string parsing integer tryparse