I googled that there is an is_a? function to check whether an object is an integer or not.
But I tried in rails console, and it doesn't work.
I ran the code like the following:
"1".is_a?
1.is_a?
Did I miss something?
|
I googled that there is an But I tried in rails console, and it doesn't work. I ran the code like the following:
Did I miss something? |
||||
|
There's not a built in function to say if a string is effectively an integer, but you can easily make your own:
This works because the Kernel method
and thus:
You could alter the function to return
Although if the assignment in a test position offends you, you can always do it like this:
Either way, this method only does the conversion once, which if you have to do a lot of these, may be a significant speed advantage. [Changed function name from |
|||||||||||||
|
|
You forgot to include the class you were testing against:
|
|||||||||
|
|
i used a regular expression
|
|||
|
|
|
Ruby has a function called respond_to? that can be used to seeing if a particular class or object has a method with a certain name. The syntax is something like
http://www.prateekdayal.net/2007/10/16/rubys-responds_to-for-checking-if-a-method-exists/ |
|||||||
|
|
Maybe this will help you
|
|||||||
|
|
I wanted something similar, but none of these did it for me, but this one does - use "class":
|
|||
|
|
ri, or the rubydoc site. Enteringri is_a?at your command-line could return a couple hits, with the important one beingObject.is_a?– the Tin Man Nov 26 '10 at 3:31