Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a string object like this: twohundred = "200"

What is the difference between doing:

Integer(twohundred) 

and

twohundred.to_i

Is there any difference? Is it recommended to use one among the other one?

share|improve this question

2 Answers

up vote 13 down vote accepted

Integer(num) will throw an ArgumentError exception if num isn't a valid integer (you can specify the base).

num.to_i will convert as much as it can.

For example:

"2hi".to_i 
=> 2

Integer("2hi")
=> throws ArgumentError

"hi".to_i
=> 0

Integer("hi")
=> throws ArgumentError

"2.0".to_i
=> 2

Integer("2.0")
=> throws ArgumentError
share|improve this answer
Awesome answer. Thanks. – Nobita Apr 10 '12 at 17:32

From the Ruby documentation for Integer():

Integer(arg,base=0) → integer ... If arg is a String, when base is omitted or equals to zero, radix indicators (0, 0b, and 0x) are honored. In any case, strings should be strictly conformed to numeric representation. This behavior is different from that of String#to_i.

In other words, Integer("0x100") => 256 and "0x100".to_i => 0.

share|improve this answer
e.g. "0x10".to_i gives 0, while Integer("0x10") gives 16 – Phrogz Apr 10 '12 at 17:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.